From 3a2117bff22a451462e0d4e56b4efe9be130819a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 03:41:30 +0000 Subject: [PATCH] chore(deps): bump actions/cache Bumps [actions/cache](https://github.com/actions/cache) from b7e8d49f17405cc70c1c120101943203c98d3a4b to 668228422ae6a00e4ad889ee87cd7109ec5666a7. - [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/b7e8d49f17405cc70c1c120101943203c98d3a4b...b7e8d49f17405cc70c1c120101943203c98d3a4b) --- updated-dependencies: - dependency-name: actions/cache dependency-version: b7e8d49f17405cc70c1c120101943203c98d3a4b dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/test-and-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 5b649c15..a2a01666 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -39,13 +39,13 @@ jobs: - name: 🗄 Cache node_modules id: cache-node_modules - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b # main + uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # main with: path: "**/node_modules" key: node_modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - name: 🗄 Cache .eslintcache - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b # main + uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # main with: path: .eslintcache key: eslintcache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}