Skip to content

Commit 8cf67e6

Browse files
committed
update node version in Github workflows
1 parent 9887560 commit 8cf67e6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/daily-install-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
node: [14, 16]
17+
node: [18, 20, 22, 24]
1818
os: [ubuntu-latest]
1919

2020
steps:

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
node-version: [18.x, 20.x]
18+
node-version: [18.x, 20.x, 22.x, 24.x]
1919
os: [ubuntu-latest, windows-latest]
2020

2121
steps:

.github/workflows/npm-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
node: [16]
14+
node: [22, 24]
1515
os: [ubuntu-latest]
1616

1717
steps:

.github/workflows/on-push-publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v1
1515
with:
16-
node-version: 18
16+
node-version: 22
1717
- run: npm install
1818
- run: npm test
1919
- uses: JS-DevTools/npm-publish@v1

.github/workflows/prerelease-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
git branch
3131
- uses: actions/setup-node@v1
3232
with:
33-
node-version: 18
33+
node-version: 22
3434
- run: |
3535
npm pkg set name=${{ github.event.inputs.package-name }}
3636
npm pkg set bin.aio-next="./bin/run"

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
git branch
3535
- uses: actions/setup-node@v1
3636
with:
37-
node-version: 18
37+
node-version: 22
3838
- run: |
3939
npm pkg set name=${{ github.event.inputs.package-name }}
4040
npm pkg set bin.aio-next="./bin/run"

.github/workflows/version-bump-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
git config user.email github-actions@github.com
2323
- uses: actions/setup-node@v1
2424
with:
25-
node-version: 18
25+
node-version: 22
2626
- run: |
2727
npm install
2828
npm test

0 commit comments

Comments
 (0)