From 429ba55c6b133c6be209553df2644727ef41cc65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 15:43:07 +0000 Subject: [PATCH] chore(deps): 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/a11y.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/a11y.yml b/.github/workflows/a11y.yml index 039fc37..b32df7b 100644 --- a/.github/workflows/a11y.yml +++ b/.github/workflows/a11y.yml @@ -25,7 +25,7 @@ jobs: uses: jdx/mise-action@v2 - name: Cache pnpm store - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.local/share/pnpm/store key: pnpm-store-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} @@ -36,7 +36,7 @@ jobs: - name: Cache Playwright browsers id: pw-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} @@ -59,7 +59,7 @@ jobs: # of "supabase start" was a cold `docker pull`. Keyed on the CLI version so # a CLI bump (which can change pinned image tags) busts the cache. - name: Cache Supabase Docker images - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/supabase-images.tar key: supabase-images-${{ runner.os }}-${{ hashFiles('supabase/config.toml') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71fc998..e83fb4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: uses: jdx/mise-action@v2 - name: Cache pnpm store - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.local/share/pnpm/store key: pnpm-store-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}