From 7726c146bb8f7b8fa34910b1faee126dfa114a0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:45:30 +0000 Subject: [PATCH] Bump the all group across 1 directory with 2 updates Bumps the all group with 2 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9cdd18e1..fe87779f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -147,7 +147,7 @@ jobs: - name: Setup Node if: steps.gen-id.outputs.RUN_TEST == 'true' - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20 @@ -283,7 +283,7 @@ jobs: npx playwright test ${{ matrix.uiTestFile }} --retries 3 - name: Upload Playwright Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() && (steps.run-playwright-test.outcome == 'success' || steps.run-playwright-test.outcome == 'failure') with: name: playwright-report-${{ matrix.name }} @@ -292,7 +292,7 @@ jobs: if-no-files-found: error - name: Upload Playwright Videos - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() && steps.run-playwright-test.outcome == 'failure' with: name: playwright-video-${{ matrix.name }} @@ -319,7 +319,7 @@ jobs: kubectl get events -n $namespace > playwright/pod-logs/${{ matrix.name }}/events.txt - name: Upload Pod logs for failed tests - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() && steps.get-pod-logs.outcome == 'success' with: name: ${{ matrix.name }}-pod-logs