Skip to content

Commit 09ddbf8

Browse files
committed
fix: pin node version to 18.15
to avoid this bug: nodejs/node#47563
1 parent d9b8639 commit 09ddbf8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: 18
18+
node-version: 18.15
1919
- run: corepack enable
2020
- run: pnpm --version
2121
- uses: actions/setup-node@v3
2222
with:
23-
node-version: 18
23+
node-version: 18.15
2424
cache: "pnpm"
2525
cache-dependency-path: "**/pnpm-lock.yaml"
2626
- name: install

.github/workflows/ecosystem-ci-from-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@v3
7373
- uses: actions/setup-node@v3
7474
with:
75-
node-version: 18
75+
node-version: 18.15
7676
- run: corepack enable
7777
- run: pnpm --version
7878
- run: pnpm i --frozen-lockfile
@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions/checkout@v3
109109
- uses: actions/setup-node@v3
110110
with:
111-
node-version: 18
111+
node-version: 18.15
112112
- run: corepack enable
113113
- run: pnpm --version
114114
- run: pnpm i --frozen-lockfile

.github/workflows/ecosystem-ci-selected.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v3
5454
- uses: actions/setup-node@v3
5555
with:
56-
node-version: 18
56+
node-version: 18.15
5757
id: setup-node
5858
- run: corepack enable
5959
- run: pnpm --version

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/checkout@v3
5757
- uses: actions/setup-node@v3
5858
with:
59-
node-version: 18
59+
node-version: 18.15
6060
id: setup-node
6161
- run: corepack enable
6262
- run: pnpm --version

0 commit comments

Comments
 (0)