Skip to content

Commit b4f997d

Browse files
committed
Update artifacts for v4 using merge patterns
1 parent 4a94c72 commit b4f997d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/python-test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,21 @@ jobs:
5252
- name: Prepare artifacts
5353
run: mkdir .coverage-data && mv .coverage.* .coverage-data/
5454

55-
- uses: actions/upload-artifact@v3
55+
- uses: actions/upload-artifact@v4
5656
with:
57-
name: coverage-data
57+
name: coverage-data-${{ matrix.python-version }}
5858
path: .coverage-data/
5959

6060
coverage:
6161
runs-on: ubuntu-latest
6262
needs: [test]
6363
steps:
6464
- uses: actions/checkout@v4
65-
- uses: actions/download-artifact@v3
65+
- uses: actions/download-artifact@v4
6666
with:
67-
name: coverage-data
6867
path: .
68+
pattern: coverage-data-*
69+
merge-multiple: true
6970

7071
- name: Set up Python 3.12
7172
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)