Skip to content

Commit e0286e1

Browse files
committed
use node 18 as default for workflows
1 parent fcfe7b5 commit e0286e1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939
- uses: actions/setup-node@v3
4040
with:
41-
node-version: 16.x
41+
node-version: 18.x
4242
- run: npm install
4343
- run: npm run test-coverage
4444
- uses: coverallsapp/github-action@master
@@ -55,5 +55,5 @@ jobs:
5555
- uses: actions/checkout@v3
5656
- uses: actions/setup-node@v3
5757
with:
58-
node-version: 16.x
58+
node-version: 18.x
5959
- run: npm audit --groups dependencies --audit-level high

.github/workflows/release-npm-latest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: '16'
18+
node-version: '18'
1919
cache: 'npm'
2020
cache-dependency-path: package-lock.json
2121
- run: npm install-test

.github/workflows/release-npm-next.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: '16'
16+
node-version: '18'
1717
cache: 'npm'
1818
cache-dependency-path: package-lock.json
1919
- run: npm install-test

0 commit comments

Comments
 (0)