diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 26644198e6..6340ce3dff 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -78,7 +78,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@v3 + uses: actions/upload-artifact@v4 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@v3 + uses: actions/upload-artifact@v4 with: name: test-${{ matrix.platform }} path: artifacts/test @@ -155,7 +155,7 @@ jobs: cat summary.txt - name: Upload test summary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: qasummary path: summary.txt @@ -201,7 +201,7 @@ jobs: cd allure-report && zip -q -r ../qareport.zip . && cd .. - name: Upload test report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: qareport path: qareport.zip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8cb759a6a0..80f2e632dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: run: build/ci/ci-run.py ${{ matrix.platform }} artifacts build --path artifacts/build - name: Publish build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.platform }} path: artifacts/build @@ -78,7 +78,7 @@ jobs: - name: Publish test results if: always() && steps.init_qa.outcome == 'success' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-${{ matrix.platform }} path: artifacts/test