Skip to content

Commit

Permalink
fix: update actions/upload-artifact action to v4.6.0 (#1280)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 10, 2025
1 parent 8eabdf2 commit 43d3330
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/python-coverage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
poetry run coverage report --fail-under=${{ inputs.fail-under }}
- name: Upload HTML report
if: ${{ inputs.upload-html }}
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: coverage
path: htmlcov
4 changes: 2 additions & 2 deletions .github/actions/python-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ runs:
--html=.report.html --self-contained-html test
- name: Upload coverage data
if: inputs.upload-coverage
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: ${{ inputs.coverage-name }}
path: .coverage*
- name: Upload test report
if: inputs.upload-test-report
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: ${{ inputs.test-report-name }}
path: .report.html

0 comments on commit 43d3330

Please sign in to comment.