Skip to content

Commit ead6659

Browse files
committed
Updated node to 24 as it's now LTS
1 parent f283532 commit ead6659

File tree

4 files changed

+356
-130
lines changed

4 files changed

+356
-130
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [20.x, 22.x]
15+
node-version: [20.x, 22.x, 24.x]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
cache: 'npm'

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

18-
- name: Use Node.js 20.x
19-
uses: actions/setup-node@v4
18+
- name: Use Node.js 24.x
19+
uses: actions/setup-node@v6
2020
with:
21-
node-version: 20.x
21+
node-version: 24.x
2222
registry-url: 'https://registry.npmjs.org'
2323
cache: 'npm'
2424

.nvmrc

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

0 commit comments

Comments
 (0)