From 8e1afb0a767908cdad5709d348d18bcb4cf29535 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 10:13:38 +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/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 322947f..4ca040f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -199,7 +199,7 @@ jobs: # are invisible to Stryker's own diffing and would silently reuse # stale results otherwise. - name: Restore incremental mutation baseline - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: path: reports/stryker-incremental.json key: stryker-incremental-${{ hashFiles('pnpm-lock.yaml', 'stryker.config.js', 'vitest.config.ts', 'tsconfig.json') }}-${{ github.sha }} @@ -220,7 +220,7 @@ jobs: - name: Save incremental mutation baseline if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v6 with: path: reports/stryker-incremental.json key: stryker-incremental-${{ hashFiles('pnpm-lock.yaml', 'stryker.config.js', 'vitest.config.ts', 'tsconfig.json') }}-${{ github.sha }}