Skip to content

Commit b6d7ccb

Browse files
committed
node 16 no longer supported by dependencies
1 parent 4eb6b77 commit b6d7ccb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/CI.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
submodules: true
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version: 18
2222
cache: 'npm'
2323
- name: Install
2424
run: npm install
@@ -34,7 +34,7 @@ jobs:
3434
submodules: true
3535
- uses: actions/setup-node@v3
3636
with:
37-
node-version: 16
37+
node-version: 18
3838
cache: 'npm'
3939
- name: Install
4040
run: npm install
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
strategy:
5454
matrix:
55-
node: [16, 18, 20]
55+
node: [18, 20, 22]
5656
steps:
5757
- uses: actions/checkout@v3
5858
with:
@@ -67,31 +67,31 @@ jobs:
6767
run: npm run test:node
6868

6969
test_macos:
70-
name: Test on MacOS with Node 16
70+
name: Test on MacOS with Node 18
7171
runs-on: macos-latest
7272
steps:
7373
- uses: actions/checkout@v3
7474
with:
7575
submodules: true
7676
- uses: actions/setup-node@v3
7777
with:
78-
node-version: 16
78+
node-version: 18
7979
cache: 'npm'
8080
- name: Install
8181
run: npm install
8282
- name: Run tests
8383
run: npm run test:node
8484

8585
test_windows:
86-
name: Test on Windows with Node 16
86+
name: Test on Windows with Node 18
8787
runs-on: windows-latest
8888
steps:
8989
- uses: actions/checkout@v3
9090
with:
9191
submodules: true
9292
- uses: actions/setup-node@v3
9393
with:
94-
node-version: 16
94+
node-version: 18
9595
cache: 'npm'
9696
- name: Install
9797
run: npm install

0 commit comments

Comments
 (0)