From cb8f1514351a9da78d53a763d56fa02cde44b10c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 20:30:29 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .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 35363b7526b..687209423e8 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@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 id: restore-node-modules-cache with: path: | @@ -38,7 +38,7 @@ runs: name: Install NPM dependencies shell: bash run: NODE_ENV=development npm ci - - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + - uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 if: steps.restore-node-modules-cache.outputs.cache-hit != 'true' with: path: |