Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
cache: "pnpm"

# turbo's local cache for the build step only -- keyed by OS, not Node version, which is correct here since compiled output doesn't vary by Node runtime.
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: .turbo
key: turbo-build-${{ runner.os }}-${{ github.sha }}
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
shell: bash

# Node-version-aware, unlike the Build cache above: a test result cached under one Node version must never be replayed as if it verified another.
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: .turbo
key: turbo-test-${{ runner.os }}-${{ matrix.node-version }}-${{ github.sha }}
Expand Down
Loading