diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3623453cfe..a036fad643 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: # always() is required here to run this step even if the build fails # otherwise the platform will be skipped in the test report (it should be flagged as broken) if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-${{ matrix.platform }} path: artifacts/build @@ -102,7 +102,7 @@ jobs: - name: Upload test results if: always() && steps.init_qa.outcome == 'success' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: test-${{ matrix.platform }} path: artifacts/test diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index beeb87386c..f52cd850f1 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -126,7 +126,7 @@ jobs: # always() is required here to run this step even if the build fails # otherwise the platform will be skipped in the test report (it should be flagged as broken) if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-${{ matrix.platform }} path: artifacts/build @@ -150,7 +150,7 @@ jobs: - name: Upload test results if: always() && steps.init_qa.outcome == 'success' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: test-${{ matrix.platform }} path: artifacts/test @@ -203,7 +203,7 @@ jobs: cat summary.txt - name: Upload test summary - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: qasummary path: summary.txt @@ -249,7 +249,7 @@ jobs: cd allure-report && zip -q -r ../qareport.zip . && cd .. - name: Upload test report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: qareport path: qareport.zip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a0bca1d0b..622761319a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,7 @@ jobs: run: build/ci/ci-run.py ${{ matrix.platform }} artifacts build --path artifacts/build - name: Publish build artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-${{ matrix.platform }} path: artifacts/build @@ -87,7 +87,7 @@ jobs: - name: Publish test results if: always() && steps.init_qa.outcome == 'success' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: test-${{ matrix.platform }} path: artifacts/test