diff --git a/.github/workflows/coveo.yml b/.github/workflows/coveo.yml index b58daaa77..bf1b16126 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@v5 + uses: actions/upload-artifact@v6 with: name: ${{matrix.env_name}} path: "./" diff --git a/.github/workflows/ossf_scorecard.yml b/.github/workflows/ossf_scorecard.yml index 50876d668..42af96231 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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 209d8716f..fc4c619e7 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@v5 + - uses: actions/upload-artifact@v6 if: ${{ !cancelled() }} with: name: playwright-report path: tests/playwright-report/ retention-days: 30 - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: ${{ !cancelled() }} with: name: test-results