Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
shell: bash

# turbo's local filesystem cache, keyed per task. A task whose declared inputs are unchanged since the last run on this branch replays its cached result instead of re-running it. restore-keys falls back to the newest cache for the same task when no exact commit match exists, which is the normal case on a new commit.
- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: .turbo
key: turbo-${{ inputs.task }}-${{ runner.os }}-${{ github.sha }}
Expand Down
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