Skip to content

Commit

Permalink
Bump actions/{upload/download}-artifact from v3 to v4 (#1116)
Browse files Browse the repository at this point in the history
* Bump actions/{upload/download}-artifact from v3 to v4

* Bump

* Pattern
  • Loading branch information
epenet authored Mar 13, 2024
1 parent 5b67ae9 commit 9b9039b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v3"
uses: actions/upload-artifact@v4.3.1
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.os }}
path: ".coverage.*"

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.1
with:
name: docs
path: docs/_build
Expand Down Expand Up @@ -131,9 +131,10 @@ jobs:
nox --version
- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage data and display human readable report
run: |
Expand Down

0 comments on commit 9b9039b

Please sign in to comment.