From 0e0fab22b7ad91f0b4d915902c0a53ac500abb95 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 12 Jul 2026 16:58:23 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5.1.0 --- .github/common/setup-node-pnpm/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/common/setup-node-pnpm/action.yml b/.github/common/setup-node-pnpm/action.yml index a85e9b42..3e97120a 100644 --- a/.github/common/setup-node-pnpm/action.yml +++ b/.github/common/setup-node-pnpm/action.yml @@ -20,7 +20,7 @@ runs: node-version-file: package.json - name: Restore pnpm cache - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: ${{ steps.pnpm-store.outputs.store_path }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -34,7 +34,7 @@ runs: - name: Save pnpm cache if main branch if: github.ref_name == 'main' id: save-pnpm-cache - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: ${{ steps.pnpm-store.outputs.store_path }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}