diff --git a/action.yml b/action.yml index 504869b4..d10834b6 100644 --- a/action.yml +++ b/action.yml @@ -63,5 +63,5 @@ inputs: required: false runs: - using: node20 + using: node24 main: dist/index.js diff --git a/package.json b/package.json index 3212ae6b..c256bdf8 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ }, "packageManager": "pnpm@10.28.1", "engines": { - "node": "^20.9.0 || ^22.11.0 || ^24.11.0", + "node": ">=24.11.0", "pnpm": "^10.0.0" }, "pnpm": { diff --git a/tools/compile.js b/tools/compile.js index a7e32f84..34350062 100644 --- a/tools/compile.js +++ b/tools/compile.js @@ -5,7 +5,7 @@ await build({ entryPoints: ['./src/index.ts'], bundle: true, platform: 'node', - target: 'node20', + target: 'node24', minify: !!env['CI'], tsconfig: 'tsconfig.dist.json', sourcemap: true,