From 2b03c6863cf05b572a20b03678e7d278b5e23462 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Wed, 1 Jul 2026 09:32:48 +0200 Subject: [PATCH] fix(pnpm-install): bump actions/cache to v6.1.0 to drop deprecated Node.js 20 runtime --- pnpm-install/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pnpm-install/action.yaml b/pnpm-install/action.yaml index 56022a4..0310b27 100644 --- a/pnpm-install/action.yaml +++ b/pnpm-install/action.yaml @@ -64,7 +64,7 @@ runs: run: | echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT - # Pre-compute the lockfile hash and store it as a step output. `actions/cache@v4` + # Pre-compute the lockfile hash and store it as a step output. `actions/cache` # re-evaluates `key:` in its post-step (cache-save) at job teardown, and on some # self-hosted/k8s runners the workspace is wiped before that runs — calling # `hashFiles('**/pnpm-lock.yaml')` from the post-step then fails the job after @@ -76,7 +76,7 @@ runs: run: | echo "HASH=${{ hashFiles('**/pnpm-lock.yaml') }}" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v6.1.0 name: Setup pnpm cache with: path: ${{ steps.pnpm-config.outputs.STORE_PATH }}