Skip to content

Commit 81eb368

Browse files
committed
Migrate to v4 of upload/download artifact
1 parent aeb0eb3 commit 81eb368

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/python-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: "Save coverage artifact"
5353
uses: "actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3"
5454
with:
55-
name: "coverage-artifact"
55+
name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
5656
path: ".coverage.*"
5757
retention-days: 1
5858

@@ -76,7 +76,9 @@ jobs:
7676
- name: "Download coverage artifacts"
7777
uses: "actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427"
7878
with:
79-
name: coverage-artifact
79+
name: "coverage-artifacts"
80+
pattern: "coverage-artifact-*"
81+
merge-multiple: true
8082

8183
- name: "Compile coverage data, print report"
8284
run: |

0 commit comments

Comments
 (0)