diff options
Diffstat (limited to '.github/workflows/playwright.yml')
-rw-r--r-- | .github/workflows/playwright.yml | 8 |
1 files changed, 4 insertions, 4 deletions
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 |