Skip to content

Commit 6519a0e

Browse files
Fix coverage artifact combination step (#2388)
1 parent ddbefc1 commit 6519a0e

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
. venv/bin/activate
126126
pytest --cov
127127
- name: Upload coverage artifact
128-
uses: actions/upload-artifact@v4.0.0
128+
uses: actions/upload-artifact@v4.3.1
129129
with:
130130
name: coverage-linux-${{ matrix.python-version }}
131131
path: .coverage
@@ -179,7 +179,7 @@ jobs:
179179
. venv\\Scripts\\activate
180180
pytest --cov
181181
- name: Upload coverage artifact
182-
uses: actions/upload-artifact@v4.0.0
182+
uses: actions/upload-artifact@v4.3.1
183183
with:
184184
name: coverage-windows-${{ matrix.python-version }}
185185
path: .coverage
@@ -229,7 +229,7 @@ jobs:
229229
. venv/bin/activate
230230
pytest --cov
231231
- name: Upload coverage artifact
232-
uses: actions/upload-artifact@v4.0.0
232+
uses: actions/upload-artifact@v4.3.1
233233
with:
234234
name: coverage-pypy-${{ matrix.python-version }}
235235
path: .coverage
@@ -251,10 +251,7 @@ jobs:
251251
- name: Install dependencies
252252
run: pip install -U -r requirements_minimal.txt
253253
- name: Download all coverage artifacts
254-
uses: actions/[email protected]
255-
with:
256-
pattern: coverage-*
257-
merge-multiple: true
254+
uses: actions/[email protected]
258255
- name: Combine Linux coverage results
259256
run: |
260257
coverage combine coverage-linux*/.coverage

0 commit comments

Comments
 (0)