From 677bc2d5937748566948ab790b1d4ee2554ee68e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:40:11 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/qa.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 647f8ca57e..7721e1a2dd 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 c0db50e273..b97b7ddb13 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