From 362151c2dcf7e73068e55da81a2b6123b63d51ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 03:13:36 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 4.3.0 to 5.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 5.0.1. - [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/0057852bfaa89a56745cba8c7296529d2fc39830...9255dc7a253b0ccc959486e2bca901246202afeb) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8648674..c491a07 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,13 +29,13 @@ jobs: - name: 🗄 Cache node_modules id: cache-node_modules - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # main + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # main with: path: "**/node_modules" key: node_modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - name: 🗄 Cache .eslintcache - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # main + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # main with: path: .eslintcache key: eslintcache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}