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

View File

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

View File

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

View File

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