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 bf1b66bf4..31182e9b7 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