Skip to content

Commit b51c2c5

Browse files
authored
Merge pull request #780 from plugwise/artifactv5fix
Attempt to fix v5 download issue
2 parents 7289ffa + 43c1620 commit b51c2c5

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
@@ -222,11 +222,15 @@ jobs:
222222
venv-dir: ${{ env.VENV }}
223223
precommit-home: ${{ env.PRE_COMMIT_HOME }}
224224
- name: Download all coverage artifacts
225-
uses: actions/download-artifact@v4
225+
uses: actions/download-artifact@v5
226+
with:
227+
pattern: coverage-*
228+
merge-multiple: true
229+
path: ${{ github.workspace }}/artifacts
226230
- name: Combine coverage results
227231
run: |
228232
. venv/bin/activate
229-
coverage combine coverage*/.coverage*
233+
coverage combine artifacts/.coverage*
230234
coverage report --fail-under=94
231235
coverage xml
232236
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)