We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af3652 commit 82b725aCopy full SHA for 82b725a
.github/workflows/ci.yml
@@ -204,11 +204,11 @@ jobs:
204
fi
205
206
- name: Upload code coverage
207
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
208
if: steps.list_env.outputs.nyc != ''
209
with:
210
- name: coverage
211
- path: ./coverage
+ name: coverage-${{ matrix.name }}
+ path: "./coverage/${{ matrix.name }}"
212
retention-days: 1
213
214
coverage:
@@ -222,9 +222,8 @@ jobs:
222
run: sudo apt-get -y install lcov
223
224
- name: Collect coverage reports
225
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
226
227
228
path: ./coverage
229
230
- name: Merge coverage reports
0 commit comments