Skip to content

Commit fe1ef9e

Browse files
authored
Bump Node.js from v16 to v20 (#2492)
1 parent 21f5860 commit fe1ef9e

9 files changed

+16
-16
lines changed

.ci/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16
1+
FROM node:20
22

33
WORKDIR /usr/src/app
44

.github/workflows/code-format.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212

13-
- name: Use Node.js 16.x
13+
- name: Use Node.js 20.x
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 16.x
16+
node-version: 20.x
1717

1818
- name: Install
1919
run: |

.github/workflows/compiler.test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515

16-
- name: Use Node.js 16.x
16+
- name: Use Node.js 20.x
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: 16.x
19+
node-version: 20.x
2020

2121
- name: Install deps
2222
run: |

.github/workflows/generate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
token: ${{ secrets.PAT }}
3535
persist-credentials: true
3636

37-
- name: Setup Node 16.x
37+
- name: Setup Node 20.x
3838
uses: actions/setup-node@v3
3939
with:
40-
node-version: 16.x
40+
node-version: 20.x
4141
cache: npm
4242
cache-dependency-path: '**/package-lock.json'
4343

.github/workflows/gh-pages-report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818

19-
- name: Use Node.js 16.x
19+
- name: Use Node.js 20.x
2020
uses: actions/setup-node@v1
2121
with:
22-
node-version: 16.x
22+
node-version: 20.x
2323

2424
- name: Install
2525
run: |

.github/workflows/linter.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212

13-
- name: Use Node.js 16.x
13+
- name: Use Node.js 20.x
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 16.x
16+
node-version: 20.x
1717

1818
- name: Install
1919
run: |

.github/workflows/update-rest-api-json.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
with:
2020
ref: ${{ matrix.branch }}
2121

22-
- name: Use Node.js 16.x
22+
- name: Use Node.js 20.x
2323
uses: actions/setup-node@v1
2424
with:
25-
node-version: 16.x
25+
node-version: 20.x
2626

2727
- name: Install deps
2828
run: |

.github/workflows/validate-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
token: ${{ secrets.PAT }}
3333
ref: main
3434

35-
- name: Use Node.js 16.x
35+
- name: Use Node.js 20.x
3636
uses: actions/setup-node@v1
3737
with:
38-
node-version: 16.x
38+
node-version: 20.x
3939

4040
- name: Install deps 1/2
4141
working-directory: ./clients-flight-recorder

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
20

0 commit comments

Comments
 (0)