From d8f18e4ccd2d8ba9fb7a1869f5a776cd8bb76ed9 Mon Sep 17 00:00:00 2001 From: Ken Lee Shu Ming Date: Wed, 13 Nov 2024 14:57:13 +0800 Subject: [PATCH] feat: upgrade to use v4 of artifacts action (#7881) --- .github/workflows/ci.yml | 4 ++-- .github/workflows/playwright.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e7e8d2248..f862c2504f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: NODE_OPTIONS: '--max-old-space-size=4096' AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE: 1 - name: Upload build files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: build-output @@ -147,7 +147,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: always() with: name: build-output diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 726622a969..8c16fb79a6 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -46,7 +46,7 @@ jobs: NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} run: npx playwright test __tests__/e2e/encrypt-submission.spec.ts timeout-minutes: 15 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report