Skip to content

Commit caf039e

Browse files
authored
chore: use node 18 and bump actions to node 20 (#80)
1 parent f32655f commit caf039e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/deploy-site.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 1
1414

1515
- name: Install pnpm
1616
run: corepack enable && pnpm -v
1717

18-
- uses: actions/setup-node@v2
18+
- uses: actions/setup-node@v4
1919
with:
20-
node-version: '16'
20+
node-version: 18
2121
cache: 'pnpm'
2222
cache-dependency-path: pnpm-lock.yaml
2323

.github/workflows/manual.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ jobs:
7373
run: echo "$RUNNER_CONTEXT"
7474

7575
- name: Checkout
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v4
7777
with:
7878
fetch-depth: 1
7979

8080
- name: Setup Node.js
81-
uses: actions/setup-node@v3
81+
uses: actions/setup-node@v4
8282
with:
83-
node-version: 16
83+
node-version: 18
8484
cache-dependency-path: pnpm-lock.yaml
8585

8686
- name: Install Pnpm

.github/workflows/monitor-metrics.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 1
2424

2525
- name: Setup Node.js
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
28-
node-version: 16
28+
node-version: 18
2929
cache-dependency-path: pnpm-lock.yaml
3030

3131
- name: Install Pnpm

.github/workflows/pr-bench.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
run: echo "$RUNNER_CONTEXT"
5252

5353
- name: Checkout
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
with:
5656
fetch-depth: 1
5757

5858
- name: Setup Node.js
59-
uses: actions/setup-node@v3
59+
uses: actions/setup-node@v4
6060
with:
61-
node-version: 16
61+
node-version: 18
6262
cache-dependency-path: pnpm-lock.yaml
6363

6464
- name: Install Pnpm

.github/workflows/scheduled.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ jobs:
7878
run: echo "$RUNNER_CONTEXT"
7979

8080
- name: Checkout
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282
with:
8383
fetch-depth: 1
8484

8585
- name: Setup Node.js
86-
uses: actions/setup-node@v3
86+
uses: actions/setup-node@v4
8787
with:
88-
node-version: 16
88+
node-version: 18
8989
cache-dependency-path: pnpm-lock.yaml
9090

9191
- name: Install Pnpm

0 commit comments

Comments
 (0)