Skip to content

Commit 0a260d8

Browse files
committed
Upgrade to node 24
Upgrade ot node
1 parent fbeb884 commit 0a260d8

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ outputs:
3939
python-path:
4040
description: "The absolute path to the Python or PyPy executable."
4141
runs:
42-
using: 'node20'
42+
using: 'node24'
4343
main: 'dist/setup/index.js'
4444
post: 'dist/cache-save/index.js'
4545
post-if: success()

package-lock.json

Lines changed: 13 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"private": true,
55
"description": "Setup python action",
66
"main": "dist/index.js",
7+
"engines": {
8+
"node": ">=24.0.0"
9+
},
710
"scripts": {
811
"build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts",
912
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
@@ -37,7 +40,7 @@
3740
},
3841
"devDependencies": {
3942
"@types/jest": "^29.5.12",
40-
"@types/node": "^20.11.25",
43+
"@types/node": "^24.1.0",
4144
"@types/semver": "^7.7.0",
4245
"@typescript-eslint/eslint-plugin": "^5.54.0",
4346
"@typescript-eslint/parser": "^5.54.0",

0 commit comments

Comments
 (0)