Skip to content

Commit

Permalink
build: use artifacts@v4 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Batchelder committed Dec 21, 2023
1 parent 0855528 commit 2f49435
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Expand Up @@ -92,9 +92,9 @@ jobs:
${{ env.venv-path }}/python -m tox -m ci-tests
- name: "Upload coverage data"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: covdata
name: covdata-${{ matrix.os }}
path: .coverage.*

coverage:
Expand All @@ -118,9 +118,10 @@ jobs:
python -m pip install -r requirements/tox.txt
- name: "Download coverage data"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: covdata
pattern: covdata-*
merge-multiple: true

- name: "Combine and report"
run: |
Expand Down

0 comments on commit 2f49435

Please sign in to comment.