From c8b8a974fc02b37ba378668fdd2ed4f283fe7511 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 03:36:47 +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/seo-monitor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/seo-monitor.yml b/.github/workflows/seo-monitor.yml index b8cca7c..95f61b0 100644 --- a/.github/workflows/seo-monitor.yml +++ b/.github/workflows/seo-monitor.yml @@ -32,7 +32,7 @@ jobs: - run: pnpm build - name: Restore latest monitor baseline id: baseline - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: monitor-baseline key: seo-monitor-${{ github.ref_name }}-${{ github.run_id }} @@ -56,7 +56,7 @@ jobs: cp -R monitor-current monitor-baseline - name: Save monitor baseline if: always() && hashFiles('monitor-baseline/score.json') != '' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: monitor-baseline key: seo-monitor-${{ github.ref_name }}-${{ github.run_id }}