Skip to content

Commit 4447ff1

Browse files
aduh95targos
authored andcommitted
build,tools: gitHub Actions: use Node.js Fermium
PR-URL: #35840 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent b1e531a commit 4447ff1

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/auto-start-ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
# ./doc/guides/commit-queue.md
1010
- cron: "*/5 * * * *"
1111

12+
env:
13+
NODE_VERSION: 14.x
14+
1215
jobs:
1316
startCI:
1417
if: github.repository == 'nodejs/node'
@@ -20,7 +23,7 @@ jobs:
2023
- name: Install Node.js
2124
uses: actions/setup-node@v2-beta
2225
with:
23-
node-version: '12'
26+
node-version: ${{ env.NODE_VERSION }}
2427
- name: Install node-core-utils
2528
run: npm install -g node-core-utils
2629

.github/workflows/commit-queue.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
schedule:
1515
- cron: "*/5 * * * *"
1616

17+
env:
18+
NODE_VERSION: 14.x
19+
1720
jobs:
1821
commitQueue:
1922
if: github.repository == 'nodejs/node'
@@ -34,7 +37,7 @@ jobs:
3437
- name: Install Node.js
3538
uses: actions/setup-node@v2-beta
3639
with:
37-
node-version: '12'
40+
node-version: ${{ env.NODE_VERSION }}
3841
- name: Install node-core-utils
3942
run: npm install -g node-core-utils@latest
4043

.github/workflows/linters.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
PYTHON_VERSION: 3.9
13-
NODE_VERSION: 10.x
13+
NODE_VERSION: 14.x
1414

1515
jobs:
1616
lint-addon-docs:

.github/workflows/misc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- v[0-9]+.x
1010

1111
env:
12-
NODE_VERSION: 12.x
12+
NODE_VERSION: 14.x
1313

1414
jobs:
1515
build-docs:

0 commit comments

Comments
 (0)