Skip to content

Commit

Permalink
chore(gh-actions-deps): update actions/upload-artifact action to v4.6…
Browse files Browse the repository at this point in the history
….0 in all dependant reusable workflows (#316)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 14, 2025
1 parent b1bd17e commit cec1bea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
griffe check --format=verbose --against="$(git rev-parse origin/main)" --search=src "$PACKAGE_NAME" 2>&1 | tee -a breaking_changes.md
- name: Finish writing summary file
run: echo "\`\`\`" >> breaking_changes.md
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: breaking_changes
path: breaking_changes.md
2 changes: 1 addition & 1 deletion .github/workflows/_reusable-sbom-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
severity-cutoff: low
- name: Upload SBOM scan SARIF report as a workflow artifact
if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.scan.outcome) }}
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: sarif_artifact
path: ${{ steps.scan.outputs.sarif }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_reusable-test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
}}
- name: Run tox
run: tox -v
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
if: ${{ !cancelled() }}
with:
name: artifact_${{ matrix.os-name }}_${{ matrix.python-version }}_tests_and_linting
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Run tox
id: run-tox
run: tox -ve tests
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
if: ${{ !cancelled() }}
with:
name: artifact_${{ matrix.os-name }}_tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_reusable-test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
with:
dest: ${{ matrix.tox-env }}_results.zip
files: .results_${{ matrix.tox-env }}/
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
if: ${{ !cancelled() }}
with:
name: artifact_${{ matrix.tox-env }}
Expand Down

0 comments on commit cec1bea

Please sign in to comment.