From 7bc7f0195e7a36fe4410a0d732c56b0e50437e7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 04:07:04 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/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/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/e2e.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index dd2c1a8c..96eecb8c 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -124,7 +124,7 @@ jobs: : > /home/runner/work/_temp/runtime-logs/blocked.md - name: Upload Copilot runtime logs (if present) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: copilot-runtime-logs path: | diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 469883fc..d1a0802b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -83,7 +83,7 @@ jobs: - name: 📊 Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: playwright-report-${{ matrix.browser }} path: playwright-report/ @@ -91,7 +91,7 @@ jobs: - name: 📹 Upload test videos if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-videos-${{ matrix.browser }} path: test-results/**/*.webm @@ -99,7 +99,7 @@ jobs: - name: 📸 Upload test screenshots if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-screenshots-${{ matrix.browser }} path: test-results/**/*.png