From 59bd071fd4067008228692a391a648d0d301db2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 04:27:58 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a01bc2..2923eb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: cache: npm - id: cache-key run: echo "value=$(sha256sum package-lock.json | awk '{print $1}')" >> "$GITHUB_OUTPUT" - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 id: cache-node with: path: node_modules @@ -37,7 +37,7 @@ jobs: with: node-version: 20 cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore with: path: node_modules @@ -56,7 +56,7 @@ jobs: with: node-version: 20 cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore-lint with: path: node_modules @@ -78,7 +78,7 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore-test with: path: node_modules @@ -96,7 +96,7 @@ jobs: with: node-version: 22 cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore-cov with: path: node_modules @@ -114,7 +114,7 @@ jobs: with: node-version: 20 cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore-val with: path: node_modules @@ -133,7 +133,7 @@ jobs: with: node-version: 20 cache: npm - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache-node-restore-audit with: path: node_modules