From 53598fc8ce009164cd258748ac66cff7983a7358 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 19:05:32 +0000 Subject: [PATCH] chore(deps): update actions/cache digest to d4323d4 --- .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 793e38a331..5e0df8d68a 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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4 + - uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4 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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4 if: steps.restore-node-modules-cache.outputs.cache-hit != 'true' with: path: |