From 32ca19537cd9f7fe2723a3d56f1d0ebc5a99d67a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 12:42:40 +0000 Subject: [PATCH] build(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/coveo.yml | 2 +- .github/workflows/ossf_scorecard.yml | 2 +- .github/workflows/playwright.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coveo.yml b/.github/workflows/coveo.yml index 8ea85b273..decce4b4f 100644 --- a/.github/workflows/coveo.yml +++ b/.github/workflows/coveo.yml @@ -67,7 +67,7 @@ jobs: - name: Upload token for ${{matrix.env_name}} if: ${{ steps.generate-token.outcome == 'success' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{matrix.env_name}} path: "./" diff --git a/.github/workflows/ossf_scorecard.yml b/.github/workflows/ossf_scorecard.yml index 21be80733..3130ef440 100644 --- a/.github/workflows/ossf_scorecard.yml +++ b/.github/workflows/ossf_scorecard.yml @@ -48,7 +48,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab. - name: Upload artifact - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bb27d1fbf..209d8716f 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -18,13 +18,13 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test --retries=2 - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ !cancelled() }} with: name: playwright-report path: tests/playwright-report/ retention-days: 30 - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: ${{ !cancelled() }} with: name: test-results