From 05a01ebf448481ca0fe1f1d6b29ea488e0d90679 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 06:43:56 +0000 Subject: [PATCH] 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 | 2 +- .github/workflows/visual-diff.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba80e29..63b196c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,7 +97,7 @@ jobs: - uses: actions/checkout@v6 - name: Cache Screenshots id: screenshot-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: build key: screenshots-${{ github.sha }} diff --git a/.github/workflows/visual-diff.yml b/.github/workflows/visual-diff.yml index ebde1fa..587e3fb 100644 --- a/.github/workflows/visual-diff.yml +++ b/.github/workflows/visual-diff.yml @@ -24,7 +24,7 @@ jobs: echo "ref=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" - name: Cache Screenshots id: screenshot-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: build key: screenshots-${{ steps.ref.outputs.ref }} @@ -59,7 +59,7 @@ jobs: echo "ref=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" - name: Cache Screenshots id: screenshot-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: build key: screenshots-${{ steps.ref.outputs.ref }}-${{ matrix.name }} @@ -97,7 +97,7 @@ jobs: - uses: pnpm/action-setup@v5 - name: Restore Comparison Cache id: comparison-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{ env.OUTPUT_DIR }} @@ -132,7 +132,7 @@ jobs: echo ${{ contains(github.event.pull_request.labels.*.name, 'approve visual diff') }} > ./results/approved - name: Save Comparison Cache if: steps.comparison-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{ env.OUTPUT_DIR }}