Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
always-auth: true

- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid v6.0.9 for pinned pnpm 10

This workflow pins version: 10.30.3, so pnpm/action-setup has to switch the v6.0.9 bootstrap pnpm 11.7.0 down to pnpm 10 before pnpm install. The v6.0.9 release introduced a reported regression in that self-update/version-switch path where pnpm 11.7.0 refuses unsigned pnpm 10 downloads with ERR_PNPM_PNPM_ENGINE_IDENTITY_MISMATCH, which blocks fresh GitHub-hosted runs of this publish workflow before the packages are built; keep the action on v6.0.8 or another fixed release until that upstream regression is resolved.

Useful? React with 👍 / 👎.

with:
version: 10.30.3

Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
always-auth: true

- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: 10.30.3

Expand Down
Loading