Skip to content

Commit 2f5b35c

Browse files
committed
fix(ci): bump to node20
1 parent 40092bb commit 2f5b35c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/npm_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v4
1313

1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: 18
16+
node-version: 20
1717
- run: yarn install --immutable
1818
- run: yarn build
1919
- run: yarn lint
@@ -23,11 +23,11 @@ jobs:
2323
needs: build
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v1
26+
- uses: actions/checkout@v4
2727

2828
- uses: actions/setup-node@v3
2929
with:
30-
node-version: 18
30+
node-version: 20
3131
registry-url: https://registry.npmjs.org/
3232
- run: yarn install --immutable
3333
- run: yarn build

.github/workflows/pull_requests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v1
18+
- uses: actions/checkout@v4
1919

2020
- uses: actions/setup-node@v3
2121
with:
22-
node-version: 18
22+
node-version: 20
2323
- run: yarn install --immutable
2424
- run: yarn build
2525
- run: yarn lint

0 commit comments

Comments
 (0)