Skip to content

Commit 159fdac

Browse files
authored
drop node v18 (#2109)
1 parent 0c749ba commit 159fdac

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest]
22-
node: [18]
22+
node: [20]
2323

2424
runs-on: ${{ matrix.os }}
2525

@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
os: [ubuntu-latest, windows-latest, macos-latest]
50-
node: [18]
50+
node: [20]
5151

5252
runs-on: ${{ matrix.os }}
5353

@@ -83,7 +83,7 @@ jobs:
8383
strategy:
8484
matrix:
8585
os: [ubuntu-latest, windows-latest, macos-latest]
86-
node: [18]
86+
node: [20]
8787

8888
runs-on: ${{ matrix.os }}
8989

@@ -118,7 +118,7 @@ jobs:
118118
strategy:
119119
matrix:
120120
os: [ubuntu-latest, windows-latest, macos-latest]
121-
node: [18.19, 20, 22]
121+
node: [20, 22]
122122

123123
runs-on: ${{ matrix.os }}
124124

@@ -151,7 +151,7 @@ jobs:
151151
strategy:
152152
matrix:
153153
os: [ubuntu-latest, windows-latest, macos-latest]
154-
node: [18.19, 20, 22]
154+
node: [20, 22]
155155

156156
runs-on: ${{ matrix.os }}
157157

@@ -192,7 +192,7 @@ jobs:
192192
strategy:
193193
matrix:
194194
os: [ubuntu-latest, windows-latest, macos-latest]
195-
node: [18.19, 20, 22]
195+
node: [20, 22]
196196

197197
runs-on: ${{ matrix.os }}
198198

.github/workflows/nightly-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup node
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 18.18
26+
node-version: 20
2727
cache: pnpm
2828

2929
- name: Install dependencies

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Node
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 20
2828

2929
- name: Install dependencies
3030
run: pnpm install --no-frozen-lockfile

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
"typescript": "^5.0.4"
169169
},
170170
"engines": {
171-
"node": ">= 18"
171+
"node": ">= 20"
172172
},
173173
"private": true,
174174
"lint-staged": {

0 commit comments

Comments
 (0)