From 677c21f5f55fd8e8d80defe3dec023911bc7d8e8 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 19 Aug 2026 10:05:54 +0000 Subject: [PATCH] chore: bump pnpm/action-setup to v6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repo never used corepack — CI already installs pnpm through pnpm/action-setup and pins it with `packageManager`. v4 → v6 is a drop-in: inputs and outputs are unchanged (only the action's own runtime moved from node20 to node24), and v6 is the first version that reads `devEngines.packageManager`, so switching to that declaration later needs no further CI change. `packageManager: pnpm@11.0.8` stays as the pin — action-setup, pnpm 10 and pnpm 11 all consume it, and pnpm refuses to honour both fields at once. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01Buu8ZHjnksQQdzS6vgn5ez --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy-playground.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 388fef5..0b82753 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/deploy-playground.yml b/.github/workflows/deploy-playground.yml index c04ba6b..261605e 100644 --- a/.github/workflows/deploy-playground.yml +++ b/.github/workflows/deploy-playground.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3732120..32e50dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v4 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Setup Node.js uses: actions/setup-node@v6 @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@v4 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Setup Node.js uses: actions/setup-node@v6