Skip to content

Commit cb7e2e4

Browse files
authored
Merge pull request #157 from issue-ops/ncalteen/node24
Upgrade to Node.js 24
2 parents 8ab13cf + fe5cd53 commit cb7e2e4

File tree

10 files changed

+384
-365
lines changed

10 files changed

+384
-365
lines changed

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
id: checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Node.js
2929
id: setup-node

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Checkout
3333
id: checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Initialize CodeQL
3737
id: initialize

.github/workflows/continuous-delivery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- name: Checkout
2626
id: checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-tags: true
3030

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
id: checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Setup Node.js
2424
id: setup-node

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
id: checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.9.0
1+
24.11.1

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ outputs:
2727
description: The parsed issue as a JSON string
2828

2929
runs:
30-
using: node20
30+
using: node24
3131
main: dist/index.js

dist/index.js

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

package-lock.json

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

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "parser",
33
"description": "Convert issue form responses to JSON",
4-
"version": "4.2.0",
4+
"version": "5.0.0",
55
"author": "Nick Alteen <ncalteen@github.com>",
66
"type": "module",
77
"homepage": "https://github.com/issue-ops/parser#readme",
@@ -43,32 +43,32 @@
4343
"@actions/core": "^1.11.1",
4444
"@github/issue-parser": "^2.0.0",
4545
"dedent-js": "^1.0.1",
46-
"yaml": "^2.8.1"
46+
"yaml": "^2.8.2"
4747
},
4848
"devDependencies": {
4949
"@eslint/compat": "^1.4.1",
5050
"@github/local-action": "^6.0.2",
51-
"@rollup/plugin-commonjs": "^28.0.6",
51+
"@rollup/plugin-commonjs": "^29.0.0",
5252
"@rollup/plugin-node-resolve": "^16.0.3",
5353
"@rollup/plugin-typescript": "^12.3.0",
5454
"@types/jest": "^30.0.0",
55-
"@types/node": "^24.10.0",
56-
"@typescript-eslint/eslint-plugin": "^8.46.3",
57-
"@typescript-eslint/parser": "^8.31.1",
58-
"eslint": "^9.39.0",
55+
"@types/node": "^24.10.1",
56+
"@typescript-eslint/eslint-plugin": "^8.48.0",
57+
"@typescript-eslint/parser": "^8.48.0",
58+
"eslint": "^9.39.1",
5959
"eslint-config-prettier": "^10.1.8",
6060
"eslint-import-resolver-typescript": "^4.4.4",
6161
"eslint-plugin-import": "^2.32.0",
62-
"eslint-plugin-jest": "^29.0.1",
62+
"eslint-plugin-jest": "^29.2.1",
6363
"eslint-plugin-prettier": "^5.5.4",
6464
"jest": "^30.2.0",
6565
"jest-junit": "^16.0.0",
66-
"js-yaml": "^4.1.0",
66+
"js-yaml": "^4.1.1",
6767
"make-coverage-badge": "^1.2.0",
68-
"prettier": "^3.6.2",
68+
"prettier": "^3.7.3",
6969
"prettier-eslint": "^16.4.2",
70-
"rollup": "^4.52.5",
71-
"ts-jest": "^29.4.5",
70+
"rollup": "^4.53.3",
71+
"ts-jest": "^29.4.6",
7272
"ts-jest-resolver": "^2.0.1",
7373
"ts-node": "^10.9.2",
7474
"typescript": "^5.9.3"

0 commit comments

Comments
 (0)