From e25fcf7af54e512e48e7a023821ce3969b683c46 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Thu, 10 Oct 2024 08:31:50 +1100 Subject: [PATCH] chore: fix pnpm cache saving (#3058) --- .github/actions/build-cache/action.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/build-cache/action.yml b/.github/actions/build-cache/action.yml index 1b98a87c1..b22d3b343 100644 --- a/.github/actions/build-cache/action.yml +++ b/.github/actions/build-cache/action.yml @@ -35,7 +35,7 @@ runs: ${{ runner.os }}-maven- - name: Restore pnpm Cache id: cache-pnpm - uses: actions/cache@v4 + uses: actions/cache/restore@v4 with: path: | ~/.pnpm-store @@ -43,6 +43,3 @@ runs: key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm- - - -