From cf75a8f41edd4f27a79c8eeefc328397139ac8dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 19:16:14 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 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/v5...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 ++-- .github/workflows/testing.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bbd7f74..eb082cde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: run: npm run build - name: Restore baseline snapshots - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: tests/e2e/snapshots key: visual-snapshots-${{ github.base_ref || github.ref_name }} @@ -174,7 +174,7 @@ jobs: - name: Save updated snapshots if: success() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: tests/e2e/snapshots key: visual-snapshots-${{ github.base_ref || github.ref_name }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7fe9c5dc..6e35ceec 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -43,7 +43,7 @@ jobs: run: npm run build - name: Restore visual baselines - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: tests/e2e/snapshots key: visual-snapshots-${{ matrix.viewport }}-${{ github.base_ref || github.ref_name }} @@ -66,7 +66,7 @@ jobs: - name: Save baselines if: success() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: tests/e2e/snapshots key: visual-snapshots-${{ matrix.viewport }}-${{ github.base_ref || github.ref_name }}