Skip to content

Commit 22fe0a4

Browse files
authored
fix: ci (#688)
1 parent 0b03771 commit 22fe0a4

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node-version: [18, 20]
9+
node-version: [20]
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v1
@@ -15,7 +15,7 @@ jobs:
1515
- name: Get yarn cache
1616
id: yarn-cache
1717
run: echo "::set-output name=dir::$(yarn cache dir)"
18-
- uses: actions/cache@v2
18+
- uses: actions/cache@v4
1919
with:
2020
path: ${{ steps.yarn-cache.outputs.dir }}
2121
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
node-version: [18, 20]
30+
node-version: [20]
3131
steps:
3232
- uses: actions/checkout@v2
3333
- uses: actions/setup-node@v1
@@ -36,7 +36,7 @@ jobs:
3636
- name: Get yarn cache
3737
id: yarn-cache
3838
run: echo "::set-output name=dir::$(yarn cache dir)"
39-
- uses: actions/cache@v2
39+
- uses: actions/cache@v4
4040
with:
4141
path: ${{ steps.yarn-cache.outputs.dir }}
4242
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
node-version: [18, 20]
51+
node-version: [20]
5252
java-version: [17]
5353
steps:
5454
- uses: actions/checkout@v2
@@ -62,7 +62,7 @@ jobs:
6262
- name: Get yarn cache
6363
id: yarn-cache
6464
run: echo "::set-output name=dir::$(yarn cache dir)"
65-
- uses: actions/cache@v2
65+
- uses: actions/cache@v4
6666
with:
6767
path: ${{ steps.yarn-cache.outputs.dir }}
6868
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: macos-latest
7979
strategy:
8080
matrix:
81-
node-version: [18, 20]
81+
node-version: [20]
8282
steps:
8383
- uses: actions/checkout@v2
8484
- uses: actions/setup-node@v1
@@ -87,7 +87,7 @@ jobs:
8787
- name: Get yarn cache
8888
id: yarn-cache
8989
run: echo "::set-output name=dir::$(yarn cache dir)"
90-
- uses: actions/cache@v2
90+
- uses: actions/cache@v4
9191
with:
9292
path: ${{ steps.yarn-cache.outputs.dir }}
9393
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 20.10.0

0 commit comments

Comments
 (0)