Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
NEXT_RESOLVED_VERSION: ${{ steps.resolve-next-version.outputs.version }}
NODE_OPTIONS: --import file://${{ github.workspace }}/tools/fetch-retry.mjs
- name: Upload blob report to GitHub Actions Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: blob-report-${{matrix.version}}-${{ matrix.shard }}
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
run: npm ci

- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: all-blob-reports
pattern: blob-report-${{ matrix.version }}-*
Expand All @@ -351,7 +351,7 @@ jobs:
npx playwright merge-reports --reporter json ./all-blob-reports > merged_reports.json

- name: Upload HTML report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: html-report-${{ matrix.version }}-attempt-${{ github.run_attempt }}
path: playwright-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:

- name: Upload Test Results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-result-${{matrix.version_spec.selector}}-${{ matrix.group }}
path: ${{ env.next-path }}/test/${{steps.decide-default-bundler.outputs.default_bundler == 'turbopack' && 'turbopack-test-junit-report' || 'test-junit-report'}}/*.xml
Expand All @@ -267,7 +267,7 @@ jobs:
uses: denoland/setup-deno@v1

- name: Download Artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: test-result-${{matrix.version_spec.selector}}-*
path: artifacts
Expand All @@ -286,7 +286,7 @@ jobs:
deno run -A tools/deno/generate-md.ts >> $GITHUB_STEP_SUMMARY

- name: Upload Test JSON
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
# TODO(serhalp) Consider renaming this. It's misleading, since it's just an identifier,
# but it's formatted like a filename, and happens to be almost - but not quite - the
Expand Down
Loading