From 8ac9eb3bbf02ce753609756e086689913d3d6709 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:43:35 +0100 Subject: [PATCH] Bump actions/upload-artifact from 4.4.3 to 4.5.0 in the github-actions-dependency group (#4161) Bump actions/upload-artifact in the github-actions-dependency group Bumps the github-actions-dependency group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 4.4.3 to 4.5.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882...6f51ac03b9356f520e9adb1b1b7802705f340c2b) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependency ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/code_scan.yaml | 4 ++-- .github/workflows/codeql.yaml | 2 +- .github/workflows/daily.yaml | 2 +- .github/workflows/perf_benchmark.yaml | 4 ++-- .github/workflows/publish.yaml | 4 ++-- .github/workflows/scorecard.yaml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code_scan.yaml b/.github/workflows/code_scan.yaml index 0567b15dfd..ad66b1d55a 100644 --- a/.github/workflows/code_scan.yaml +++ b/.github/workflows/code_scan.yaml @@ -40,7 +40,7 @@ jobs: scan-type: "fs" scan-ref: . - name: Upload Trivy results artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: trivy-results path: "${{ github.workspace }}/trivy-results.*" @@ -64,7 +64,7 @@ jobs: - name: Bandit Scanning run: tox -e bandit-scan - name: Upload Bandit artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: bandit-report path: .tox/bandit-report.txt diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index 0805424d3a..27a904f944 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -80,7 +80,7 @@ jobs: template: report token: ${{ secrets.GITHUB_TOKEN }} - name: GitHub Upload Release Artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: codeql-report path: "./report.pdf" diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index 4ceddb2da2..7bf32ce115 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -49,7 +49,7 @@ jobs: - name: Run E2E Test run: tox -vv -e e2e-test-${{ matrix.task }} - name: Upload test results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: ${{ matrix.task }}-py310 path: .tox/e2e-test-${{ matrix.task }}.csv diff --git a/.github/workflows/perf_benchmark.yaml b/.github/workflows/perf_benchmark.yaml index ebdb7da409..f5297c1a64 100644 --- a/.github/workflows/perf_benchmark.yaml +++ b/.github/workflows/perf_benchmark.yaml @@ -148,7 +148,7 @@ jobs: --user-name ${{ github.triggering_actor }} --otx-ref ${{ inputs.otx-ref }} - name: Upload test results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: perf-benchmark-${{ matrix.task-short }} path: .tox/perf-benchmark-*.* @@ -180,7 +180,7 @@ jobs: python tests/perf/history/summary.py tests/perf/history ./perf-benchmark-summary --pattern "*raw*.csv" --normalize jupyter nbconvert --execute --to html --no-input tests/perf/history/summary.ipynb --output-dir ./perf-benchmark-summary --output perf-benchmark-summary - name: Upload benchmark summary - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: perf-benchmark-summary path: perf-benchmark-summary diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0b80dff810..5adc23c371 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -27,13 +27,13 @@ jobs: rm /tmp/requirements.txt - name: Build sdist run: python -m build --sdist - - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: artifact-sdist path: dist/*.tar.gz - name: Build wheel run: python -m build --wheel - - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: artifact-wheel path: dist/*.whl diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index 043503bfdd..bc428202e7 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -59,7 +59,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@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: SARIF file path: results.sarif