File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -167,9 +167,9 @@ jobs:
167
167
- name : Artifact reports
168
168
if : ${{ ! cancelled() }}
169
169
# see https://github.com/actions/upload-artifact
170
- uses : actions/upload-artifact@v3
170
+ uses : actions/upload-artifact@v4
171
171
with :
172
- name : ${{ env.TESTS_REPORTS_ARTIFACT }}
172
+ name : ${{ env.TESTS_REPORTS_ARTIFACT }}-${{ matrix.os }}-py${{ matrix.python-version }}${{ matrix.toxenv-factors }}
173
173
path : ${{ env.REPORTS_DIR }}
174
174
if-no-files-found : error
175
175
@@ -181,10 +181,11 @@ jobs:
181
181
steps :
182
182
- name : fetch test artifacts
183
183
# see https://github.com/actions/download-artifact
184
- uses : actions/download-artifact@v3
184
+ uses : actions/download-artifact@v4
185
185
with :
186
- name : ${{ env.TESTS_REPORTS_ARTIFACT }}
187
186
path : ${{ env.REPORTS_DIR }}
187
+ pattern : ${{ env.TESTS_REPORTS_ARTIFACT }}-*
188
+ merge-multiple : true
188
189
- name : Run codacy-coverage-reporter
189
190
env :
190
191
CODACY_PROJECT_TOKEN : ${{ secrets.CODACY_PROJECT_TOKEN }}
You can’t perform that action at this time.
0 commit comments