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
3 changes: 3 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ jobs:
registry-url: https://registry.npmjs.org
cache: pnpm

- name: Upgrade npm for trusted publishing
run: npm install --global npm@^11.10.0
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

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

npm@^11.10.0 makes the release workflow non-deterministic (it can change over time as new 11.x versions are published), which can lead to unexpected publish failures or behavior changes. Consider pinning to an exact npm version (or documenting why a floating range is acceptable for releases).

Suggested change
run: npm install --global npm@^11.10.0
run: npm install --global npm@11.10.0

Copilot uses AI. Check for mistakes.

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down
Loading