@@ -131,7 +131,7 @@ jobs:
131131
132132 - name : save pytest warnings json file
133133 if : success()
134- uses : actions/upload-artifact@v4
134+ uses : actions/upload-artifact@v5
135135 with :
136136 name : pytest-warnings-json-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
137137 path : |
@@ -143,7 +143,7 @@ jobs:
143143 mv reports/.coverage reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
144144
145145 - name : Upload coverage
146- uses : actions/upload-artifact@v4
146+ uses : actions/upload-artifact@v5
147147 with :
148148 name : coverage-${{ matrix.shard_name }}-${{ matrix.python-version }}-${{ matrix.django-version }}-${{ matrix.mongo-version }}-${{ matrix.os-version }}
149149 path : reports/${{ matrix.shard_name }}_${{ matrix.python-version }}_${{ matrix.django-version }}_${{ matrix.mongo-version }}_${{ matrix.os-version }}.coverage
@@ -245,7 +245,7 @@ jobs:
245245
246246 - name : save warning report
247247 if : success()
248- uses : actions/upload-artifact@v4
248+ uses : actions/upload-artifact@v5
249249 with :
250250 name : pytest-warning-report-html
251251 path : |
@@ -257,14 +257,14 @@ jobs:
257257 needs : [compile-warnings-report]
258258 steps :
259259 - name : Merge Pytest Warnings JSON Artifacts
260- uses : actions/upload-artifact/merge@v4
260+ uses : actions/upload-artifact/merge@v5
261261 with :
262262 name : pytest-warnings-json
263263 pattern : pytest-warnings-json-*
264264 delete-merged : true
265265
266266 - name : Merge Coverage Artifacts
267- uses : actions/upload-artifact/merge@v4
267+ uses : actions/upload-artifact/merge@v5
268268 with :
269269 name : coverage
270270 pattern : coverage-*
0 commit comments