From 0f5d49e80d2207835456f9b4835a87a0e6757d95 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sun, 16 Aug 2026 10:44:58 +0200 Subject: [PATCH] Fix CI: remove pnpm version conflict with packageManager field pnpm/action-setup@v4 errored with "Multiple versions of pnpm specified" because the workflow pinned version: 10 while package.json's packageManager field pins pnpm@10.12.4. The action already reads packageManager automatically, so drop the redundant version input. --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c51e159..abcf2cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 10 - uses: actions/setup-node@v4 with: @@ -33,8 +31,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 10 - uses: actions/setup-node@v4 with: