From be668c25e4ca6cfb49a14845ba253411a1f94399 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 11:34:05 +0000 Subject: [PATCH] Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/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 ... 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 a0981a20..de74ad1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: # network. Keyed on bun.lock; restore-keys let a dependency bump reuse the # prior cache as a base. - name: Cache bun download cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-cache-${{ runner.os }}-${{ hashFiles('bun.lock') }} @@ -104,7 +104,7 @@ jobs: # Next cache for this OS when the source-hash key misses. - name: Cache Next.js build if: matrix.leg == 'build-web' - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: packages/web/.next/cache key: nextjs-${{ runner.os }}-${{ hashFiles('bun.lock') }}-${{ hashFiles('packages/web/src/**') }}