summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-10-28 00:26:46 +0100
committerAntoine du Hamel <duhamelantoine1995@gmail.com>2020-10-30 12:11:13 +0100
commit876d81624d2408e1e992b605a9713c7e588f51ba (patch)
tree4ce287b729e47ba74564450e4a3db7f8285ead04
parent1da672994ac26658375db2b6a60fb00e56d02a4d (diff)
downloadnode-new-876d81624d2408e1e992b605a9713c7e588f51ba.tar.gz
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>
-rw-r--r--.github/workflows/auto-start-ci.yml5
-rw-r--r--.github/workflows/commit-queue.yml5
-rw-r--r--.github/workflows/linters.yml2
-rw-r--r--.github/workflows/misc.yml2
4 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml
index 7a430274d3..04a620249f 100644
--- a/.github/workflows/auto-start-ci.yml
+++ b/.github/workflows/auto-start-ci.yml
@@ -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
diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml
index 3e6b0e4908..5b36a358c6 100644
--- a/.github/workflows/commit-queue.yml
+++ b/.github/workflows/commit-queue.yml
@@ -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
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
index 573057742c..6c25e775d3 100644
--- a/.github/workflows/linters.yml
+++ b/.github/workflows/linters.yml
@@ -10,7 +10,7 @@ on:
env:
PYTHON_VERSION: 3.9
- NODE_VERSION: 10.x
+ NODE_VERSION: 14.x
jobs:
lint-addon-docs:
diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml
index df33822770..4ee135c5eb 100644
--- a/.github/workflows/misc.yml
+++ b/.github/workflows/misc.yml
@@ -9,7 +9,7 @@ on:
- v[0-9]+.x
env:
- NODE_VERSION: 12.x
+ NODE_VERSION: 14.x
jobs:
build-docs: