Skip to content

Commit dafdc78

Browse files
chore: upgrade actions/setup-node to v6 and node.js to v24 (#11237)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 3122da4 commit dafdc78

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

.github/ISSUE_TEMPLATE/01-package_bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ body:
6262
label: Versions
6363
description: List necessary versions here. This includes your package version, runtime version, operating system etc.
6464
placeholder: |
65-
- discord.js 14.12.1 (`npm ls discord.js` or another package)
66-
- Node.js 22.12.0 (`node --version`)
67-
- TypeScript 5.1.6 (`npm ls typescript` if you use it)
65+
- discord.js 14.24.2 (`npm ls discord.js` or another package)
66+
- Node.js 24.11.0 (`node --version`)
67+
- TypeScript 5.9.3 (`npm ls typescript` if you use it)
6868
- macOS Ventura 13.3.1
6969
validations:
7070
required: true

.github/workflows/deploy-website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Checkout repository
1717
uses: actions/checkout@v5
1818

19-
- name: Install Node.js v22
20-
uses: actions/setup-node@v5
19+
- name: Install Node.js v24
20+
uses: actions/setup-node@v6
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
package-manager-cache: false
2424

2525
- name: Install dependencies

.github/workflows/deprecate-version.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- name: Checkout repository
3939
uses: actions/checkout@v5
4040

41-
- name: Install Node.js v22
42-
uses: actions/setup-node@v5
41+
- name: Install Node.js v24
42+
uses: actions/setup-node@v6
4343
with:
44-
node-version: 22
44+
node-version: 24
4545
package-manager-cache: false
4646

4747
- name: Install dependencies

.github/workflows/documentation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
with:
4343
ref: ${{ inputs.ref || '' }}
4444

45-
- name: Install Node.js v22
46-
uses: actions/setup-node@v5
45+
- name: Install Node.js v24
46+
uses: actions/setup-node@v6
4747
with:
48-
node-version: 22
48+
node-version: 24
4949
package-manager-cache: false
5050

5151
- name: Install dependencies
@@ -215,10 +215,10 @@ jobs:
215215
- name: Checkout repository
216216
uses: actions/checkout@v5
217217

218-
- name: Install Node.js v22
219-
uses: actions/setup-node@v5
218+
- name: Install Node.js v24
219+
uses: actions/setup-node@v6
220220
with:
221-
node-version: 22
221+
node-version: 24
222222
package-manager-cache: false
223223

224224
- name: Install dependencies

.github/workflows/publish-dev-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v5
1414

15-
- name: Install Node.js v22
16-
uses: actions/setup-node@v5
15+
- name: Install Node.js v24
16+
uses: actions/setup-node@v6
1717
with:
18-
node-version: 22
18+
node-version: 24
1919
package-manager-cache: false
2020

2121
- name: Install dependencies

.github/workflows/publish-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
token: ${{ steps.app-token.outputs.token }}
5050
ref: ${{ steps.ref.outputs.ref }}
5151

52-
- name: Install Node.js v22
53-
uses: actions/setup-node@v5
52+
- name: Install Node.js v24
53+
uses: actions/setup-node@v6
5454
with:
55-
node-version: 22
55+
node-version: 24
5656
package-manager-cache: false
5757
registry-url: https://registry.npmjs.org/
5858

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
- name: Checkout repository
1010
uses: actions/checkout@v5
1111

12-
- name: Install Node.js v22
13-
uses: actions/setup-node@v5
12+
- name: Install Node.js v24
13+
uses: actions/setup-node@v6
1414
with:
15-
node-version: 22
15+
node-version: 24
1616
package-manager-cache: false
1717

1818
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
token: ${{ steps.app-token.outputs.token }}
6161
ref: ${{ inputs.ref || '' }}
6262

63-
- name: Install Node.js v22
64-
uses: actions/setup-node@v5
63+
- name: Install Node.js v24
64+
uses: actions/setup-node@v6
6565
with:
66-
node-version: 22
66+
node-version: 24
6767
package-manager-cache: false
6868
registry-url: https://registry.npmjs.org/
6969

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121

22-
- name: Install Node.js v22
23-
uses: actions/setup-node@v5
22+
- name: Install Node.js v24
23+
uses: actions/setup-node@v6
2424
with:
25-
node-version: 22
25+
node-version: 24
2626
package-manager-cache: false
2727

2828
- name: Install dependencies

0 commit comments

Comments
 (0)