diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 7e67a92b5f..d86ead8985 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -11,7 +11,7 @@ jobs: PR_NUM: ${{ github.event.number }} run: echo $PR_NUM > pr_num.txt - name: Upload the PR number - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pr_num path: ./pr_num.txt \ No newline at end of file diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 613dffc7b9..77cee94dad 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -76,12 +76,12 @@ jobs: run: npx playwright test -u if: github.event_name == 'push' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-screenshots path: test/playwright/__screenshots__/ - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-report path: playwright-report/ @@ -90,13 +90,13 @@ jobs: run: echo ${{ steps.master-screenshots.outcome }} > ./master-screenshots-outcome if: github.event_name == 'pull_request' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: master-screenshots-outcome path: master-screenshots-outcome if: github.event_name == 'pull_request' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: playwright-output path: playwright-output diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index da73b5931e..06299c5d26 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -56,7 +56,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@v3 + uses: actions/upload-artifact@v4 with: name: SARIF file path: results.sarif