From 6cd30a1fa863f14b31de80ef6d27db9ec501358b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Dec 2025 18:41:36 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/actions/setup-node-pnpm/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-node-pnpm/action.yml b/.github/actions/setup-node-pnpm/action.yml index 2ee4032..49e9957 100644 --- a/.github/actions/setup-node-pnpm/action.yml +++ b/.github/actions/setup-node-pnpm/action.yml @@ -22,7 +22,7 @@ runs: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT - name: Save and restore pnpm cache on main - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 if: ${{ github.ref_name == 'main' }} with: path: ${{ steps.store.outputs.STORE_PATH }} @@ -31,7 +31,7 @@ runs: ${{ runner.os }}-pnpm-store- - name: Restore pnpm cache on PR - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 if: ${{ github.ref_name != 'main' }} with: path: ${{ steps.store.outputs.STORE_PATH }}