Skip to content
Open
Show file tree
Hide file tree
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
55 changes: 37 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"homepage": "https://github.com/clevyr/node-versions-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/core": "3.0.0",
Copy link

Choose a reason for hiding this comment

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

ESM-only package imported into CommonJS project

High Severity

@actions/core v3.0.0 is ESM-only, but this project has no "type": "module" in package.json, meaning it defaults to CommonJS. Attempting to require() an ESM-only package will fail at runtime with ERR_REQUIRE_ESM. The project needs to either be converted to ESM (adding "type": "module" and updating imports) or the source needs to use dynamic import() for @actions/core.

Fix in Cursor Fix in Web

"axios": "1.6.2"
},
"devDependencies": {
Expand Down
Loading