Skip to content

Commit 6d1bc5b

Browse files
authored
chore(ci): update GH action versions (#606)
Signed-off-by: Paul Horton <[email protected]>
1 parent f566c82 commit 6d1bc5b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/python.yml

+5-4
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)