From 549ae69d2f28437eb92fa014c221e34ae2d41ddd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:07:30 +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/deploy.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4de664f693..a8d820ba2a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,7 +35,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14c15fba1f..da039af613 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: - name: Cache node_modules id: cached-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }} @@ -48,7 +48,7 @@ jobs: - name: Cache node_modules id: cached-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }} @@ -71,7 +71,7 @@ jobs: - name: Cache node_modules id: cached-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }}