From 59dcefb6a963b27ceb427c7f533a674953e4dacb Mon Sep 17 00:00:00 2001 From: Karn Date: Mon, 10 Aug 2026 01:32:18 +0530 Subject: [PATCH] =?UTF-8?q?fix(ci):=20bump=20actions/cache=20to=20v6=20?= =?UTF-8?q?=E2=80=94=20the=20last=20node20=20runtime=20in=20the=20workflow?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release run warned that Node 20 is deprecated on Actions runners; actions/cache@v4 was the one remaining pin declaring node20 (checkout@v6, mise-action@v4 and goreleaser-action@v7 all declare node24 already). v5 is the node24 bump, v6 the ESM migration; inputs are unchanged through both. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy-site.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 448a41f..5003210 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: run: echo "path=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT" - name: Cache the pnpm store - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ steps.pnpm-store.outputs.path }} key: pnpm-store-${{ runner.os }}-${{ hashFiles('web/pnpm-lock.yaml', 'relay/pnpm-lock.yaml') }} diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 17ab95d..f897016 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -53,7 +53,7 @@ jobs: - name: Cache the pnpm store if: steps.token.outputs.present == 'true' - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ steps.pnpm-store.outputs.path }} key: pnpm-store-site-${{ runner.os }}-${{ hashFiles('site/pnpm-lock.yaml') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 22140a2..6c665da 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,7 +67,7 @@ jobs: run: echo "path=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT" - name: Cache the pnpm store - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ steps.pnpm-store.outputs.path }} key: pnpm-store-${{ runner.os }}-${{ hashFiles('web/pnpm-lock.yaml', 'relay/pnpm-lock.yaml') }}