Skip to content

Commit 37ce9ca

Browse files
authored
Merge pull request #996 from ocaml/node24
Update default runtime to node24
2 parents a73cff3 + cde3842 commit 37ce9ca

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ inputs:
4242
required: false
4343
default: ${{ github.token }}
4444
runs:
45-
using: node20
45+
using: node24
4646
main: dist/index.cjs
4747
post: dist/post/index.cjs
4848
post-if: success()

analysis/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ inputs:
1010
required: false
1111
default: ${{ github.token }}
1212
runs:
13-
using: node20
13+
using: node24
1414
main: dist/index.cjs

lint-doc/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ branding:
55
icon: package
66
color: orange
77
runs:
8-
using: node20
8+
using: node24
99
main: dist/index.cjs

lint-fmt/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ branding:
55
icon: package
66
color: orange
77
runs:
8-
using: node20
8+
using: node24
99
main: dist/index.cjs

lint-opam/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ branding:
55
icon: package
66
color: orange
77
runs:
8-
using: node20
8+
using: node24
99
main: dist/index.cjs

packages/analysis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"sideEffects": false,
55
"type": "module",
66
"scripts": {
7-
"build": "esbuild --bundle --format=cjs --outfile=../../analysis/dist/index.cjs --platform=node --target=node20 src/index.ts",
7+
"build": "esbuild --bundle --format=cjs --outfile=../../analysis/dist/index.cjs --platform=node --target=node24 src/index.ts",
88
"typecheck": "tsc"
99
},
1010
"dependencies": {

packages/lint-doc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"sideEffects": false,
55
"type": "module",
66
"scripts": {
7-
"build": "esbuild --bundle --format=cjs --outfile=../../lint-doc/dist/index.cjs --platform=node --target=node20 src/index.ts",
7+
"build": "esbuild --bundle --format=cjs --outfile=../../lint-doc/dist/index.cjs --platform=node --target=node24 src/index.ts",
88
"typecheck": "tsc"
99
},
1010
"dependencies": {

packages/lint-fmt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"sideEffects": false,
55
"type": "module",
66
"scripts": {
7-
"build": "esbuild --bundle --format=cjs --outfile=../../lint-fmt/dist/index.cjs --platform=node --target=node20 src/index.ts",
7+
"build": "esbuild --bundle --format=cjs --outfile=../../lint-fmt/dist/index.cjs --platform=node --target=node24 src/index.ts",
88
"typecheck": "tsc"
99
},
1010
"dependencies": {

packages/lint-opam/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"sideEffects": false,
55
"type": "module",
66
"scripts": {
7-
"build": "esbuild --bundle --format=cjs --outfile=../../lint-opam/dist/index.cjs --platform=node --target=node20 src/index.ts",
7+
"build": "esbuild --bundle --format=cjs --outfile=../../lint-opam/dist/index.cjs --platform=node --target=node24 src/index.ts",
88
"typecheck": "tsc"
99
},
1010
"dependencies": {

packages/setup-ocaml/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"sideEffects": false,
55
"type": "module",
66
"scripts": {
7-
"build:main": "esbuild --bundle --format=cjs --outfile=../../dist/index.cjs --platform=node --target=node20 src/index.ts",
8-
"build:post": "esbuild --bundle --format=cjs --outfile=../../dist/post/index.cjs --platform=node --target=node20 src/post.ts",
7+
"build:main": "esbuild --bundle --format=cjs --outfile=../../dist/index.cjs --platform=node --target=node24 src/index.ts",
8+
"build:post": "esbuild --bundle --format=cjs --outfile=../../dist/post/index.cjs --platform=node --target=node24 src/post.ts",
99
"typecheck": "tsc"
1010
},
1111
"dependencies": {

0 commit comments

Comments
 (0)