From 26bf3372a1cfa63a3bb1add8cdef94e4b7e1b121 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 17:45:40 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/actions/install-dependencies/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index e221acbcc2..13b173742c 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -25,7 +25,7 @@ runs: fi # When the main workflow calls many workspace workflows, we can reuse this cache for all of them. # Since this is caching the node_modules directory, DO NOT add partial-match restore keys! - - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5 id: restore-node-modules-cache with: path: | @@ -39,7 +39,7 @@ runs: working-directory: . shell: bash run: NODE_ENV=development npm ci - - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5 if: steps.restore-node-modules-cache.outputs.cache-hit != 'true' with: path: |