File tree 3 files changed +12
-11
lines changed
3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' oas3-chow-chow ' : major
3
+ ---
4
+
5
+ Remove support for Node 16 and add support for 20 and 22.
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
10
10
11
11
strategy :
12
12
matrix :
13
- node-version : [16 .x, 18 .x]
13
+ node-version : [18 .x, 20.x, 22 .x]
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Use Node.js ${{ matrix.node-version }}
18
- uses : actions/setup-node@v1
18
+ uses : actions/setup-node@v3
19
19
with :
20
20
node-version : ${{ matrix.node-version }}
21
21
- run : yarn install --frozen-lockfile
Original file line number Diff line number Diff line change @@ -11,16 +11,12 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout Repo
14
- uses : actions/checkout@v2
15
- with :
16
- # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
17
- fetch-depth : 0
18
-
14
+ uses : actions/checkout@v3
19
15
20
- - name : Setup Node.js 16 .x
21
- uses : actions/setup-node@v2
16
+ - name : Setup Node.js 20 .x
17
+ uses : actions/setup-node@v3
22
18
with :
23
- node-version : 16 .x
19
+ node-version : 20 .x
24
20
25
21
- name : Install Dependencies
26
22
run : yarn install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments