diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 50421eb213..abee0e88be 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -97,7 +97,7 @@ jobs: cosign sign -y quay.io/sustainable_computing_io/${{matrix.IMAGE_NAME}}:${{matrix.LABEL}}@${{ steps.build-push-image.outputs.digest }} - name: Generate SBOM - uses: anchore/sbom-action@v0.17.2 + uses: anchore/sbom-action@v0.17.4 with: image: quay.io/sustainable_computing_io/${{matrix.IMAGE_NAME}}:${{matrix.LABEL}} artifact-name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.json @@ -105,7 +105,7 @@ jobs: - name: save Kepler image SBOM as artifact if: ${{ inputs.pushImage }} - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json path: ./sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 69e68c50ac..5c63d4da37 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -34,7 +34,7 @@ jobs: IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}} # save kepler image - name: save Kepler image as artifact - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: keplerlibbpf path: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}} @@ -103,7 +103,7 @@ jobs: - name: Save artifacts if: ${{ failure() }} - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: artifacts path: ${{env.ARTIFACT_DIR}} diff --git a/.github/workflows/platform-validation.yml b/.github/workflows/platform-validation.yml index cb0b586b26..74d9fa64ed 100644 --- a/.github/workflows/platform-validation.yml +++ b/.github/workflows/platform-validation.yml @@ -44,7 +44,7 @@ jobs: IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}} - name: Save Kepler image as artifact - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: kepler path: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}} @@ -71,7 +71,7 @@ jobs: IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}} - name: Save kepler-validator test image as artifact - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: validator path: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}} @@ -172,7 +172,7 @@ jobs: - name: Save artifacts if: ${{ failure() }} - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: artifacts path: ${{env.ARTIFACT_DIR}} diff --git a/.github/workflows/rpm.yml b/.github/workflows/rpm.yml index f95173364e..2da6efc6a5 100644 --- a/.github/workflows/rpm.yml +++ b/.github/workflows/rpm.yml @@ -31,7 +31,7 @@ jobs: sudo tar czvf /tmp/kepler.rpm.tar.gz RPMS/ - name: save Kepler image as artifact - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: kepler_rpm_${{ steps.git_version.outputs.git_version }} path: /tmp/kepler.rpm.tar.gz diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 22b978d155..143e749acd 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -51,7 +51,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: Upload artifact - uses: actions/upload-artifact@b18b1d32f3f31abcdc29dee3f2484801fe7822f4 # v4.3.6 + uses: actions/upload-artifact@184d73b71b93c222403b2e7f1ffebe4508014249 # v4.3.6 with: name: SARIF file path: scorecard-results.sarif diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index acf5f434bf..87c147f78e 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -40,7 +40,7 @@ jobs: - name: Upload coverage reports to Codecov if: github.event_name != 'pull_request' - uses: codecov/codecov-action@v4.5.0 + uses: codecov/codecov-action@v4.6.0 with: fail_ci_if_error: false # because codecov updates occasionally fail files: coverage.out