From 617ec3f126c67debcac89f0e08110d05e55510f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 00:16:48 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/qa.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) 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