ci: bump pnpm/action-setup v5 → v6 in publish workflow#145
Merged
Conversation
The release workflow has been failing since today's main pushes with:
Error: Multiple versions of pnpm specified:
- version pnpm@11.1.2 in the package.json with the key "packageManager"
- version 10 in the GitHub Action config with the key "version"
pnpm/action-setup@v5 doesn't tolerate both being specified; v6 defers
to `packageManager` when present. Other ether/* plugins already use
@v6 with no `version:` override (ep_align, ep_cursortrace, etc.) —
align here.
Side effect: every merge to main since the ep_plugin_helpers bump
(2026-05-17) has failed publish-npm, so npm is still serving the
pre-bump 0.4.109 with the stale `^0.2.7` range that doesn't accept
ep_plugin_helpers@0.6.x. Unblocks the next merge from publishing.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Symptom
Every push to
mainsince 2026-05-17 has failedpublish-npm:So npm is still serving the pre-bump tarball (
0.4.109with^0.2.7ep_plugin_helpers), which doesn't resolve to the currentep_plugin_helpers@0.6.xline.Fix
pnpm/action-setup@v5doesn't tolerate both inputs being set;@v6defers topackageManagerinpackage.jsonwhen present. The other ether/* plugins (ep_align, ep_cursortrace, …) already use@v6with noversion:override — match that convention here.Test plan
ep_plugin_helpers: "^0.6.0"independencies(already in main since chore(deps): regenerate pnpm-lock.yaml after ep_plugin_helpers bump #144)🤖 Generated with Claude Code