Skip to content

Commit 6c37bcd

Browse files
committed
Fix artifact upgrade
1 parent 8656a56 commit 6c37bcd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/verify.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,15 @@ jobs:
145145
. venv/bin/activate
146146
uv pip install -r requirements.txt -r requirements-test.txt
147147
- name: Download all coverage artifacts
148-
uses: actions/download-artifact@v4
148+
uses: actions/download-artifact@v5
149+
with:
150+
pattern: coverage-*
151+
merge-multiple: true
152+
path: ${{ github.workspace }}/artifacts
149153
- name: Combine coverage results
150154
run: |
151155
. venv/bin/activate
152-
coverage combine coverage*/.coverage*
156+
coverage combine artifacts/.coverage*
153157
coverage report --fail-under=85
154158
coverage xml
155159
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)