Skip to content

Commit

Permalink
fix: update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 14, 2023
1 parent 26b4a3d commit f3741cf
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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: ${{ inputs.coverage-name }}
path: .coverage*
- name: Upload test report
if: inputs.upload-test-report
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: ${{ inputs.test-report-name }}
path: .report.html

0 comments on commit f3741cf

Please sign in to comment.