From f901f6655d54813a13bf846d0ecdeff81ab5d940 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:56:11 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .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 42e53d91..3fb9aaec 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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ steps.pnpm-store.outputs.store_path }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}