Skip to content

Commit 41bcc03

Browse files
authored
Merge pull request #297 from issue-ops/ncalteen/node24
Upgrade to Node.js 24
2 parents 801b784 + 4be9d63 commit 41bcc03

10 files changed

Lines changed: 362 additions & 336 deletions

File tree

.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
@@ -63,5 +63,5 @@ outputs:
6363
description: The URL to upload assets to the release
6464

6565
runs:
66-
using: node20
66+
using: node24
6767
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: 226 additions & 200 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "releaser",
33
"description": "Handle releases for GitHub repositories",
4-
"version": "2.2.0",
4+
"version": "3.0.0",
55
"type": "module",
66
"author": "Nick Alteen <ncalteen@github.com>",
77
"homepage": "https://github.com/issue-ops/releaser#readme",
@@ -46,27 +46,27 @@
4646
},
4747
"devDependencies": {
4848
"@eslint/compat": "^1.4.1",
49-
"@rollup/plugin-commonjs": "^28.0.6",
49+
"@rollup/plugin-commonjs": "^29.0.0",
5050
"@rollup/plugin-node-resolve": "^16.0.3",
5151
"@rollup/plugin-typescript": "^12.3.0",
5252
"@types/jest": "^30.0.0",
53-
"@types/node": "^24.10.0",
54-
"@typescript-eslint/eslint-plugin": "^8.46.2",
55-
"@typescript-eslint/parser": "^8.38.0",
56-
"eslint": "^9.39.0",
53+
"@types/node": "^24.10.1",
54+
"@typescript-eslint/eslint-plugin": "^8.48.0",
55+
"@typescript-eslint/parser": "^8.48.0",
56+
"eslint": "^9.39.1",
5757
"eslint-config-prettier": "^10.1.8",
5858
"eslint-import-resolver-typescript": "^4.4.4",
5959
"eslint-plugin-import": "^2.32.0",
60-
"eslint-plugin-jest": "^29.0.1",
60+
"eslint-plugin-jest": "^29.1.0",
6161
"eslint-plugin-prettier": "^5.5.4",
6262
"globals": "^16.5.0",
6363
"jest": "^30.2.0",
6464
"jest-junit": "^16.0.0",
65-
"js-yaml": "^4.1.0",
65+
"js-yaml": "^4.1.1",
6666
"make-coverage-badge": "^1.2.0",
6767
"prettier": "^3.6.2",
6868
"prettier-eslint": "^16.4.2",
69-
"rollup": "^4.52.5",
69+
"rollup": "^4.53.2",
7070
"ts-jest": "^29.4.5",
7171
"ts-jest-resolver": "^2.0.1",
7272
"ts-node": "^10.9.2",

0 commit comments

Comments
 (0)