Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4447ff1

Browse filesBrowse 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
Copy full SHA for 4447ff1

File tree

Expand file treeCollapse file tree

4 files changed

+10
-4
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

4 files changed

+10
-4
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: .github/workflows/auto-start-ci.yml
+4-1Lines changed: 4 additions & 1 deletion
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

Collapse file

‎.github/workflows/commit-queue.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/commit-queue.yml
+4-1Lines changed: 4 additions & 1 deletion
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

Collapse file

‎.github/workflows/linters.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/linters.yml
+1-1Lines changed: 1 addition & 1 deletion
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:
Collapse file

‎.github/workflows/misc.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/misc.yml
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.