From 3b2c9cf66f359027db59d9c56f184adb422a310b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 17:22:20 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ui-test-reliability.yml | 4 ++-- .github/workflows/validate.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ui-test-reliability.yml b/.github/workflows/ui-test-reliability.yml index 656fb3e10..89e8f18ab 100644 --- a/.github/workflows/ui-test-reliability.yml +++ b/.github/workflows/ui-test-reliability.yml @@ -44,13 +44,13 @@ jobs: - name: test reliability run: npm run test:reliability --production - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: failure() with: name: Playwright failed test-results path: packages/**/test-results retention-days: 30 - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: always() with: name: playwright-report diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 322757f5e..9af9e5cf3 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -192,7 +192,7 @@ jobs: - name: Test report id: upload-test-report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() with: name: ${{ matrix.package.name }}-${{ matrix.package.shardIndex }}-playwright-report @@ -201,7 +201,7 @@ jobs: - name: Failure report id: upload-failure-report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() with: name: ${{ matrix.package.name }}-${{ matrix.package.shardIndex }}-test-results