From 51ca75bf173c335d1eeae26f322960cc534b174e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Somhairle=20MacLe=C3=B2id?= Date: Thu, 9 Jan 2025 19:01:43 +0000 Subject: [PATCH] Use `upload-artifact@v4` (#7710) --- .../workflows/create-pullrequest-prerelease.yml | 2 +- .github/workflows/e2e.yml | 6 +++--- .github/workflows/test-and-check.yml | 14 -------------- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/.github/workflows/create-pullrequest-prerelease.yml b/.github/workflows/create-pullrequest-prerelease.yml index 9d6d378bf7e6..117a82f9dd61 100644 --- a/.github/workflows/create-pullrequest-prerelease.yml +++ b/.github/workflows/create-pullrequest-prerelease.yml @@ -31,7 +31,7 @@ jobs: run: node .github/extract-runtime-versions.mjs # extract versions before modifying version to include commit hash - name: Upload runtime versions - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: runtime-versions.md path: runtime-versions.md diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4272060251ba..1da2472650f6 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -57,21 +57,21 @@ jobs: - name: Upload debug logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: e2e-test-debug-logs-${{ matrix.os }}-${{ matrix.node }} path: ${{ runner.temp }}/wrangler-debug-logs/ - name: Upload test report if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: e2e-test-report-${{ matrix.os }}-${{ matrix.node }} path: ${{ runner.temp }}/test-report/ - name: Upload turbo logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: turbo-runs-${{ matrix.os }}-${{ matrix.node }} path: .turbo/runs diff --git a/.github/workflows/test-and-check.yml b/.github/workflows/test-and-check.yml index 84d1ac60b9c7..c9d4cb32956b 100644 --- a/.github/workflows/test-and-check.yml +++ b/.github/workflows/test-and-check.yml @@ -139,17 +139,3 @@ jobs: WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/ TEST_REPORT_PATH: ${{ runner.temp }}/test-report/index.html CI_OS: ${{ runner.os }} - - - name: Upload debug logs - if: always() - uses: actions/upload-artifact@v3 - with: - name: e2e-test-debug-logs-${{ matrix.os }}-${{ matrix.node }} - path: ${{ runner.temp }}/wrangler-debug-logs/ - - - name: Upload test report - if: always() - uses: actions/upload-artifact@v3 - with: - name: e2e-test-report-${{ matrix.os }}-${{ matrix.node }} - path: ${{ runner.temp }}/test-report/