Skip to content
Open
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/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
run: bun install --frozen-lockfile

- name: Download all coverage summaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: coverage-summary-*
path: artifacts
Expand All @@ -168,7 +168,7 @@ jobs:
run: |
set -euo pipefail
# Each artifact arrives as artifacts/coverage-summary-<slug>/<path-without-leading-dir>
# actions/download-artifact@v4 unzips a single-file artifact into a directory
# actions/download-artifact@v8 unzips a single-file artifact into a directory
# named after the artifact, preserving the source file's basename.
# Copy each back to its expected location so coverage-baselines.json's
# summaryPath entries resolve.
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
run: bun install --frozen-lockfile

- name: Download all coverage summaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: coverage-summary-*
path: artifacts
Expand Down
Loading