diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/auto-approve.yml | 2 | ||||
-rw-r--r-- | .github/workflows/playwright.yml | 8 | ||||
-rw-r--r-- | .github/workflows/scorecard.yml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 7e67a92b..d86ead89 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 613dffc7..77cee94d 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 da73b593..06299c5d 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 |