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/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Update npm for trusted publishing
run: npm install -g npm@11.5.1
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

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

The workflow pins npm to an exact patch version (11.5.1) but the PR title suggests you only need a minimum version for OIDC trusted publishing. Consider either (a) documenting why this exact version is required (e.g., a linked upstream requirement) or (b) using a semver range (like the required major/minor) so the workflow can pick up patch security fixes automatically.

Suggested change
run: npm install -g npm@11.5.1
run: npm install -g npm@^11.5.1

Copilot uses AI. Check for mistakes.

- name: Install Depencencies
run: yarn install

Expand Down
Loading