From 15964fbed1df72aca5e45706b81fcc71d079f7c8 Mon Sep 17 00:00:00 2001 From: dcshzj <27919917+dcshzj@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:16:40 +0800 Subject: [PATCH] chore: upgrade actions/upload-artifact to v4 --- .github/workflows/playwright.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 90b6b700d..d80c3ea2d 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -19,9 +19,9 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: - name: playwright-report + name: playwright-report-${{ github.run_number }} path: playwright-report/ retention-days: 30