Skip to content

Commit ad0a96f

Browse files
dav-tbjozefizso
authored andcommitted
Upgrade action runtime to Node.js 24
GitHub Actions is deprecating the Node 20 runtime, with Node 24 becoming the default in June 2026. This updates the action to run on the node24 runtime. - action.yml: change `using` from node20 to node24 - .nvmrc: update development version to v24 - package.json: update engines to >=24 Closes #680
1 parent 543415c commit ad0a96f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v24

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ outputs:
125125
slug_prefix:
126126
description: Random prefix added to generated report anchor slugs for this action run
127127
runs:
128-
using: 'node20'
128+
using: 'node24'
129129
main: 'dist/index.js'
130130
branding:
131131
color: blue

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"titleTemplate": "{title}"
8484
},
8585
"engines": {
86-
"node": ">=20"
86+
"node": ">=24"
8787
},
8888
"markdownlint-cli2": {
8989
"ignores": [

0 commit comments

Comments
 (0)