@@ -131,7 +131,7 @@ jobs:
131131
132132 - name : save pytest warnings json file
133133 if : success()
134- uses : actions/upload-artifact@v6
134+ uses : actions/upload-artifact@v7
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@v6
146+ uses : actions/upload-artifact@v7
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
@@ -230,7 +230,7 @@ jobs:
230230 steps :
231231 - uses : actions/checkout@v6
232232 - name : collect pytest warnings files
233- uses : actions/download-artifact@v7
233+ uses : actions/download-artifact@v8
234234 with :
235235 pattern : pytest-warnings-json-*
236236 merge-multiple : true
@@ -245,7 +245,7 @@ jobs:
245245
246246 - name : save warning report
247247 if : success()
248- uses : actions/upload-artifact@v6
248+ uses : actions/upload-artifact@v7
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@v6
260+ uses : actions/upload-artifact/merge@v7
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@v6
267+ uses : actions/upload-artifact/merge@v7
268268 with :
269269 name : coverage
270270 pattern : coverage-*
@@ -289,7 +289,7 @@ jobs:
289289 python-version : ${{ matrix.python-version }}
290290
291291 - name : Download all artifacts
292- uses : actions/download-artifact@v7
292+ uses : actions/download-artifact@v8
293293 with :
294294 pattern : coverage-*
295295 merge-multiple : true
0 commit comments