From a142a3a2418ae79be893ac04aee6d28fe27cbf82 Mon Sep 17 00:00:00 2001 From: Sean Cassiere <33615041+SeanCassiere@users.noreply.github.com> Date: Tue, 12 May 2026 10:56:27 +1200 Subject: [PATCH] cache bust the pnpm deps store key --- .github/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 60c8ad3..f124e6b 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -18,7 +18,7 @@ runs: uses: actions/cache@v5.0.4 with: path: ${{ env.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies