From a02f86c544ad2982be3334b8ae73547f6f923c7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 18:43:00 +0000 Subject: [PATCH] ci(deps): bump actions/cache Bumps the github-actions group with 1 update in the / directory: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}