Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and GlassOfWhiskey committed Jan 2, 2024
1 parent 32040f1 commit 48d37f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ jobs:
- name: "Run tests via Tox"
run: python -m tox
- name: "Upload coverage report for unit tests"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ format('py{0}-unit-tests', matrix.python) }}
name: ${{ format('{0}-py{1}-unit-tests', matrix.on, matrix.python) }}
path: ./coverage.xml
retention-days: 1
if-no-files-found: error
Expand All @@ -113,7 +113,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Download artifacts"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 48d37f7

Please sign in to comment.