@@ -329,7 +329,7 @@ jobs:
329329 labels : ${{ steps.meta.outputs.labels }}
330330 outputs : type=docker,dest=build-kit.tar
331331 - name : Upload build-kit image
332- uses : actions/upload-artifact@v5
332+ uses : actions/upload-artifact@v6
333333 with :
334334 name : build-kit
335335 path : build-kit.tar
@@ -403,7 +403,7 @@ jobs:
403403 mkdir scripts
404404 rsync -a source/${{ inputs.build_kit_scripts_directory }}/ scripts
405405 - name : Download build-kit image
406- uses : actions/download-artifact@v6
406+ uses : actions/download-artifact@v7
407407 with :
408408 name : build-kit
409409 - name : Load build-kit image
@@ -430,7 +430,7 @@ jobs:
430430 build-kit run-script run_unit_tests
431431 - name : Archive test results
432432 if : ${{ always() && (steps.run_unit_tests.outcome == 'success' || steps.run_unit_tests.outcome == 'failure') }}
433- uses : actions/upload-artifact@v5
433+ uses : actions/upload-artifact@v6
434434 with :
435435 if-no-files-found : error
436436 name : ctest-report
@@ -447,14 +447,14 @@ jobs:
447447 build-kit run-script run_coverage
448448 - name : Archive coverage report
449449 if : ${{ always() && (steps.run_coverage.outcome == 'success' || steps.run_coverage.outcome == 'failure') }}
450- uses : actions/upload-artifact@v5
450+ uses : actions/upload-artifact@v6
451451 with :
452452 if-no-files-found : error
453453 name : coverage-report
454454 path : ${{ inputs.coverage_report_path }}
455455 - name : Archive coverage xml
456456 if : ${{ always() && (steps.run_coverage.outcome == 'success' || steps.run_coverage.outcome == 'failure') }}
457- uses : actions/upload-artifact@v5
457+ uses : actions/upload-artifact@v6
458458 with :
459459 if-no-files-found : error
460460 name : coverage-xml
@@ -488,7 +488,7 @@ jobs:
488488 tar -czf dist.tar.gz dist
489489 - name : Upload dist artifact
490490 if : ${{ always() && (steps.create_dist.outcome == 'success' || steps.create_dist.outcome == 'failure') }}
491- uses : actions/upload-artifact@v5 .0.0
491+ uses : actions/upload-artifact@v6 .0.0
492492 with :
493493 if-no-files-found : error
494494 path : dist.tar.gz
@@ -505,7 +505,7 @@ jobs:
505505 build-kit run-script install_wheels
506506 - name : Upload wheels artifact
507507 if : ${{ always() && (steps.create_wheels.outcome == 'success' || steps.create_wheels.outcome == 'failure') }}
508- uses : actions/upload-artifact@v5 .0.0
508+ uses : actions/upload-artifact@v6 .0.0
509509 with :
510510 if-no-files-found : error
511511 path : ${{ inputs.wheels_path }}
@@ -522,15 +522,15 @@ jobs:
522522 if : ${{ inputs.run_integration_tests == 'true' }}
523523 steps :
524524 - name : Download dist dir
525- uses : actions/download-artifact@v6 .0.0
525+ uses : actions/download-artifact@v7 .0.0
526526 with :
527527 name : dist
528528 - name : Extract dist.tar.gz
529529 run : |
530530 tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }}
531531 - name : Download wheels
532532 if : ${{ inputs.run_install_wheels == 'true' }}
533- uses : actions/download-artifact@v6 .0.0
533+ uses : actions/download-artifact@v7 .0.0
534534 with :
535535 name : wheels
536536 path : wheels
@@ -543,7 +543,7 @@ jobs:
543543 mkdir scripts
544544 rsync -a source/${{ inputs.build_kit_scripts_directory }}/ scripts
545545 - name : Download build-kit image
546- uses : actions/download-artifact@v6
546+ uses : actions/download-artifact@v7
547547 with :
548548 name : build-kit
549549 - name : Load build-kit image
@@ -567,7 +567,7 @@ jobs:
567567 run-script run_integration_tests
568568 - name : Upload result and report as artifact
569569 if : ${{ always() && (steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure') }}
570- uses : actions/upload-artifact@v5 .0.0
570+ uses : actions/upload-artifact@v6 .0.0
571571 with :
572572 if-no-files-found : error
573573 name : integration-test-report
@@ -598,7 +598,7 @@ jobs:
598598 ref : ${{ needs.setup-env.outputs.sha_everest_ci }}
599599 path : everest-ci
600600 - name : Download xml coverage report
601- uses : actions/download-artifact@v6 .0.0
601+ uses : actions/download-artifact@v7 .0.0
602602 with :
603603 if-no-files-found : error
604604 name : coverage-xml
@@ -630,7 +630,7 @@ jobs:
630630 artifact_directory : ${{ github.workspace }}/coverage-badge/
631631 deploy_global_artifact : true
632632 - name : Download html coverage report
633- uses : actions/download-artifact@v6 .0.0
633+ uses : actions/download-artifact@v7 .0.0
634634 with :
635635 if-no-files-found : error
636636 name : coverage-report
0 commit comments