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
2 changes: 2 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Upgrade npm for OIDC support
run: npm install -g npm@latest
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

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

Using npm@latest makes the workflow non-deterministic and could lead to unexpected behavior if a new npm version introduces breaking changes. Consider pinning to a specific version that supports OIDC (e.g., npm@11.5.1) to ensure reproducible builds.

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

Copilot uses AI. Check for mistakes.
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
Expand Down