File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -167,9 +167,9 @@ jobs:
167167 - name : Artifact reports
168168 if : ${{ ! cancelled() }}
169169 # see https://github.com/actions/upload-artifact
170- uses : actions/upload-artifact@v3
170+ uses : actions/upload-artifact@v4
171171 with :
172- name : ${{ env.TESTS_REPORTS_ARTIFACT }}
172+ name : ${{ env.TESTS_REPORTS_ARTIFACT }}-${{ matrix.os }}-py${{ matrix.python-version }}${{ matrix.toxenv-factors }}
173173 path : ${{ env.REPORTS_DIR }}
174174 if-no-files-found : error
175175
@@ -181,10 +181,11 @@ jobs:
181181 steps :
182182 - name : fetch test artifacts
183183 # see https://github.com/actions/download-artifact
184- uses : actions/download-artifact@v3
184+ uses : actions/download-artifact@v4
185185 with :
186- name : ${{ env.TESTS_REPORTS_ARTIFACT }}
187186 path : ${{ env.REPORTS_DIR }}
187+ pattern : ${{ env.TESTS_REPORTS_ARTIFACT }}-*
188+ merge-multiple : true
188189 - name : Run codacy-coverage-reporter
189190 env :
190191 CODACY_PROJECT_TOKEN : ${{ secrets.CODACY_PROJECT_TOKEN }}
You can’t perform that action at this time.
0 commit comments