build,tools: gitHub Actions: use Node.js Fermium

PR-URL: https://github.com/nodejs/node/pull/35840
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
Antoine du Hamel 2020-10-28 00:26:46 +01:00
parent 1da672994a
commit 876d81624d
4 changed files with 10 additions and 4 deletions

View File

@ -9,6 +9,9 @@ on:
# ./doc/guides/commit-queue.md
- cron: "*/5 * * * *"
env:
NODE_VERSION: 14.x
jobs:
startCI:
if: github.repository == 'nodejs/node'
@ -20,7 +23,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '12'
node-version: ${{ env.NODE_VERSION }}
- name: Install node-core-utils
run: npm install -g node-core-utils

View File

@ -14,6 +14,9 @@ on:
schedule:
- cron: "*/5 * * * *"
env:
NODE_VERSION: 14.x
jobs:
commitQueue:
if: github.repository == 'nodejs/node'
@ -34,7 +37,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '12'
node-version: ${{ env.NODE_VERSION }}
- name: Install node-core-utils
run: npm install -g node-core-utils@latest

View File

@ -10,7 +10,7 @@ on:
env:
PYTHON_VERSION: 3.9
NODE_VERSION: 10.x
NODE_VERSION: 14.x
jobs:
lint-addon-docs:

View File

@ -9,7 +9,7 @@ on:
- v[0-9]+.x
env:
NODE_VERSION: 12.x
NODE_VERSION: 14.x
jobs:
build-docs: