Skip to content

Commit 0beec52

Browse files
committed
Make artifact names unique for v4 of action
1 parent 5c778f4 commit 0beec52

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Upload coverage data
5050
uses: actions/upload-artifact@v4
5151
with:
52-
name: coverage-data
52+
name: coverage-data-${{ matrix.python-version }}
5353
path: .coverage.*
5454

5555
coverage:
@@ -67,9 +67,10 @@ jobs:
6767
run: python -m pip install --upgrade coverage[toml]
6868

6969
- name: Download data
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
72-
name: coverage-data
72+
pattern: coverage-data-*
73+
merge-multiple: true
7374

7475
- name: Combine coverage, create reports and fail if less than threshold.
7576
run: |

0 commit comments

Comments
 (0)