diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0db1bb2..e10a399 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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 }}