From 31a19ebf8c8f1fe439a347a55d586afa4d6dc6d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 03:39:41 +0000 Subject: [PATCH] chore(deps): bump actions/cache Bumps [actions/cache](https://github.com/actions/cache) from b7e8d49f17405cc70c1c120101943203c98d3a4b to 565629816435f6c0b50676926c9b05c254113c0c. - [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...565629816435f6c0b50676926c9b05c254113c0c) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 565629816435f6c0b50676926c9b05c254113c0c 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 5b649c1..f8c9fa1 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@565629816435f6c0b50676926c9b05c254113c0c # 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@565629816435f6c0b50676926c9b05c254113c0c # main with: path: .eslintcache key: eslintcache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}