@@ -233,7 +233,7 @@ jobs:
233233 cat ${{ github.workspace }}/durations.out.json
234234
235235 - name : Upload test durations
236- uses : actions/upload-artifact@v5
236+ uses : actions/upload-artifact@v6
237237 with :
238238 name : " e2e-test-durations-${{ strategy.job-index }}"
239239 path : ${{ github.workspace }}/durations.out.json
@@ -249,7 +249,7 @@ jobs:
249249 - name : Upload test reports as an artifact
250250 # Should be run especially when tests fail
251251 if : always()
252- uses : actions/upload-artifact@v5
252+ uses : actions/upload-artifact@v6
253253 with :
254254 name : cypress-test-results-${{ strategy.job-index }}
255255 path : ${{ github.workspace }}/ctrf-report.json
@@ -275,7 +275,7 @@ jobs:
275275
276276 - name : Upload test reports as an artifact
277277 if : always() && steps.copy_test_reports.outputs.test_reports_exist == 'true'
278- uses : actions/upload-artifact@v5
278+ uses : actions/upload-artifact@v6
279279 with :
280280 name : cypress-docker-reports-${{ strategy.job-index }}
281281 path : ${{ github.workspace }}/test-reports
@@ -287,7 +287,7 @@ jobs:
287287 - run_e2e_tests
288288 steps :
289289 - name : Download E2E Test Results
290- uses : actions/download-artifact@v6
290+ uses : actions/download-artifact@v7
291291 continue-on-error : true
292292 with :
293293 pattern : cypress-test-results-*
@@ -319,7 +319,7 @@ jobs:
319319 ssh-key : ${{ secrets.jore4_ci_data_repo_ssh_key }}
320320
321321 - name : Download E2E Test Durations
322- uses : actions/download-artifact@v6
322+ uses : actions/download-artifact@v7
323323 with :
324324 pattern : e2e-test-durations-*
325325 path : ${{ github.workspace }}/split-durations
0 commit comments