Skip to content
Open
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: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
Copy link

Choose a reason for hiding this comment

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

Bug: Node Setup Caching Causes Workflow Issues

The actions/setup-node@v5 upgrade enables automatic package manager caching when a packageManager field exists in package.json. This might lead to unexpected workflow behavior, particularly if caching isn't desired or if cache invalidation is problematic. The workflow currently lacks explicit configuration for this caching.

Fix in Cursor Fix in Web

with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
Expand Down