Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.15.0
24.0.0

Choose a reason for hiding this comment

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

medium

Node.js v24.0.0は、v24系統の最初のリリースバージョンです。一般的に、.0で終わるバージョンには初期のバグが含まれている可能性があるため、より新しいパッチリリース(例: 24.3.0)を使用することが推奨されます。

package-lock.jsonでは@types/node24.3.0に解決されているため、.node-version24.3.0に合わせることで、開発環境と依存関係の整合性を高めることができます。

24.3.0

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ inputs:
required: true

runs:
using: node20
using: node24
main: compiled/index.js
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "apply-git-user",
"description": "Apply a well-known git user to `git config user.*`.",
"engines": {
"node": ">=20"
"node": ">=24"
},
"exports": {
".": "./compiled/index.js"
Expand All @@ -18,7 +18,7 @@
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.19.11",
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.38.3",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
Expand Down