Skip to content

Commit 0a693b5

Browse files
authored
Merge e7b7f22 into f28e40c
2 parents f28e40c + e7b7f22 commit 0a693b5

File tree

6 files changed

+29
-26
lines changed

6 files changed

+29
-26
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- uses: actions/setup-node@v4
77
with:
8-
node-version: '20.x'
8+
node-version: '24.x'
99
cache: npm
1010

1111
- run: npm ci

.licenses/npm/@types/node.dep.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/undici-types.dep.yml

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

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ outputs:
3636
result:
3737
description: The return value of the script, stringified with `JSON.stringify`
3838
runs:
39-
using: node20
39+
using: node24
4040
main: dist/index.js

package-lock.json

Lines changed: 18 additions & 16 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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "@actions/github-script",
33
"description": "A GitHub action for executing a simple script",
4+
"engines": {
5+
"node": ">=24"
6+
},
47
"version": "7.0.1",
58
"author": "GitHub",
69
"license": "MIT",
710
"main": "dist/index.js",
811
"types": "types/async-function.d.ts",
9-
"private": true,
10-
"engines": {
11-
"node": ">=20.0.0 <21.0.0"
12-
},
1312
"scripts": {
1413
"build": "npm run build:types && ncc build src/main.ts",
1514
"build:types": "tsc src/async-function.ts -t es5 --declaration --allowJs --emitDeclarationOnly --outDir types",
@@ -47,7 +46,7 @@
4746
"@octokit/core": "^5.0.1",
4847
"@octokit/plugin-request-log": "^4.0.0",
4948
"@octokit/plugin-retry": "^6.0.1",
50-
"@types/node": "^20.9.0"
49+
"@types/node": "^24.1.0"
5150
},
5251
"devDependencies": {
5352
"@types/jest": "^29.5.5",

0 commit comments

Comments
 (0)