Skip to content

Commit

Permalink
chore(gh-actions-deps): update actions/upload-artifact action to v4.4…
Browse files Browse the repository at this point in the history
….3 in all dependant reusable workflows
  • Loading branch information
renovate[bot] authored Oct 22, 2024
1 parent 52ef1b2 commit 620a747
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 @@ -33,7 +33,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@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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 @@ -61,7 +61,7 @@ jobs:
}}
- name: Run tox
run: tox -v
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: ${{ !cancelled() }}
with:
name: artifact_${{ matrix.os-name }}_${{ matrix.python-version }}_tests_and_linting
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Run tox
id: run-tox
run: tox -ve tests
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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 @@ -49,7 +49,7 @@ jobs:
with:
dest: ${{ matrix.tox-env }}_results.zip
files: .results_${{ matrix.tox-env }}/
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: ${{ !cancelled() }}
with:
name: artifact_${{ matrix.tox-env }}
Expand Down

0 comments on commit 620a747

Please sign in to comment.