Skip to content

Commit 0cf5c8f

Browse files
committed
Use Node 22 (upcoming LTS) for development
Drop Node 18 for testing builds.
1 parent 783a2a7 commit 0cf5c8f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-20.04
99
strategy:
1010
matrix:
11-
node: [ 18, 20 ]
11+
node: [ 20, 22 ]
1212
steps:
1313
- name: Clone repository
1414
uses: actions/checkout@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Node.js
1414
uses: actions/setup-node@v4
1515
with:
16-
node-version: 20
16+
node-version: 22
1717
cache: npm
1818

1919
- name: Print Node.js and npm version

.github/workflows/release-management.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
cache: npm
2323

2424
- name: Install
@@ -94,7 +94,7 @@ jobs:
9494
- name: Set up Node.js
9595
uses: actions/setup-node@v4
9696
with:
97-
node-version: 20
97+
node-version: 22
9898
cache: npm
9999
registry-url: https://registry.npmjs.org
100100

@@ -127,7 +127,7 @@ jobs:
127127
- name: Set up Node.js
128128
uses: actions/setup-node@v4
129129
with:
130-
node-version: 20
130+
node-version: 22
131131
cache: npm
132132

133133
- name: Install

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
cache: npm
2121

2222
- name: Print Node.js and npm version

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

0 commit comments

Comments
 (0)