Skip to content

Commit bc9d442

Browse files
authored
update node version (#156)
* update node version * add changeset
1 parent 953b1fe commit bc9d442

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.changeset/sharp-balloons-double.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'oas3-chow-chow': major
3+
---
4+
5+
Remove support for Node 16 and add support for 20 and 22.

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [16.x, 18.x]
13+
node-version: [18.x, 20.x, 22.x]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- run: yarn install --frozen-lockfile

.github/workflows/release.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- 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
1915

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
2218
with:
23-
node-version: 16.x
19+
node-version: 20.x
2420

2521
- name: Install Dependencies
2622
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)