From ff663ed6ddfb9b659ea22215e87d40588005fef3 Mon Sep 17 00:00:00 2001 From: Rohit Ghumare Date: Fri, 31 Jul 2026 10:42:26 +0100 Subject: [PATCH] fix(release): take the bundle pnpm version from packageManager PR #570 moved the pnpm version to the repo-root packageManager field and removed the version: 10 pin from ci.yml and _rust-binary.yml, but _bundle.yml kept its pin. pnpm/action-setup refuses to run when both are set, so every deploy: bundle worker release fails at setup. Drop the pin so the bundle workflow reads packageManager like the other two. --- .github/workflows/_bundle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_bundle.yml b/.github/workflows/_bundle.yml index 01316d7af..3e816d13e 100644 --- a/.github/workflows/_bundle.yml +++ b/.github/workflows/_bundle.yml @@ -80,10 +80,10 @@ jobs: # file with all npm deps + JSON assets inlined. Only Node built-ins # and `fsevents` (macOS-only optional native dep used by chokidar) # are external. See `/scripts/build-bundle.mjs`. + # The pnpm version comes from the repo-root package.json + # `packageManager` field (the UI pnpm workspace root). - uses: pnpm/action-setup@v5 if: inputs.language == 'node' || inputs.language == 'javascript' - with: - version: 10 - uses: actions/setup-node@v5 if: inputs.language == 'node' || inputs.language == 'javascript'