Skip to content

Commit 9c22b5d

Browse files
authored
chore: update node to latest 18.x (#991)
1 parent 177e5fc commit 9c22b5d

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/release-canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
# Setup .npmrc file to publish to npm
17-
- uses: actions/setup-node@v3
17+
- uses: actions/setup-node@v4
1818
with:
19-
node-version: '16.x'
19+
node-version: '18.x'
2020
registry-url: 'https://registry.npmjs.org'
2121
# Ensure that the README is published with the package
2222
- run: rm -f packages/cli/README.md && cp README.md packages/cli

.github/workflows/release-create-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
steps:
99
- uses: actions/checkout@v3
1010
# Setup .npmrc file to publish to npm
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '16.x'
13+
node-version: '18.x'
1414
registry-url: 'https://registry.npmjs.org'
1515
- run: npm ci
1616
- run: npm publish --workspace packages/create-cli

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737
# Setup .npmrc file to publish to npm
38-
- uses: actions/setup-node@v3
38+
- uses: actions/setup-node@v4
3939
with:
40-
node-version: '16.x'
40+
node-version: '18.x'
4141
registry-url: 'https://registry.npmjs.org'
4242
env:
4343
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -93,9 +93,9 @@ jobs:
9393
- uses: actions/checkout@v3
9494
with:
9595
ref: main
96-
- uses: actions/setup-node@v3
96+
- uses: actions/setup-node@v4
9797
with:
98-
node-version: '16.x'
98+
node-version: '18.x'
9999
registry-url: 'https://registry.npmjs.org'
100100
env:
101101
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13-
- uses: actions/setup-node@v3
13+
- uses: actions/setup-node@v4
1414
with:
15-
node-version: "16"
15+
node-version: "18"
1616
cache: "npm"
1717
cache-dependency-path: package-lock.json
1818
- run: npm config set fund false && npm set audit false
@@ -28,9 +28,9 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- uses: actions/checkout@v3
31-
- uses: actions/setup-node@v3
31+
- uses: actions/setup-node@v4
3232
with:
33-
node-version: "16"
33+
node-version: "18"
3434
cache: "npm"
3535
cache-dependency-path: package-lock.json
3636
- run: npm config set fund false && npm set audit false

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.20.4
1+
v18.20.5

0 commit comments

Comments
 (0)