Skip to content

Commit 05203d5

Browse files
committed
Fix version specification for setup-node.
1 parent 64768a9 commit 05203d5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci_browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
deno-version: 2.x
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 22.x
22+
node-version: 22
2323
- name: Install dependencies
2424
run: |
2525
npm install -g typescript

.github/workflows/ci_bun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
deno-version: 2.x
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 22.x
22+
node-version: 22
2323
- uses: oven-sh/setup-bun@v2
2424
with:
2525
bun-version: latest

.github/workflows/ci_cloudflare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
deno-version: 2.x
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 22.x
22+
node-version: 22
2323
- name: Prepare test
2424
run: deno task npm
2525
- name: Run test

.github/workflows/ci_node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 19.x, 20.x, 21.x, 22.x, 23.x]
15+
node-version: [16, 18, 19, 20, 21, 22, 23]
1616

1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-node@v4
3232
with:
33-
node-version: 22.x
33+
node-version: 22
3434
registry-url: https://registry.npmjs.org/
3535
- uses: denoland/setup-deno@v2
3636
with:

0 commit comments

Comments
 (0)