Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-07-27 04:42:13 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-07-29 07:57:11 +0300
commitd6bb7ed6c8c72b98aadd220d9f16138cc32998ea (patch)
tree9a9eb2560a0e2a9df9b04da429f14185aa1937f8 /.github
parent3a10a37f28020ac7353609990b5ddda8673f81d1 (diff)
build: use lts shorthand in GitHub Actions
Rather than hard-coding GitHub Actions to use Node.js 14.x, use the `lts/*` shorthand for "most recent LTS version". PR-URL: https://github.com/nodejs/node/pull/39538 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/auto-start-ci.yml2
-rw-r--r--.github/workflows/commit-lint.yml2
-rw-r--r--.github/workflows/commit-queue.yml2
-rw-r--r--.github/workflows/daily.yml2
-rw-r--r--.github/workflows/linters.yml2
-rw-r--r--.github/workflows/misc.yml2
6 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml
index 236e23d30f6..c3527549e16 100644
--- a/.github/workflows/auto-start-ci.yml
+++ b/.github/workflows/auto-start-ci.yml
@@ -10,7 +10,7 @@ on:
- cron: "*/5 * * * *"
env:
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
startCI:
diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml
index 844a2a08ef6..0f6fd639523 100644
--- a/.github/workflows/commit-lint.yml
+++ b/.github/workflows/commit-lint.yml
@@ -3,7 +3,7 @@ name: "Commit messages adheres to guidelines at https://goo.gl/p2fr5Q"
on: [pull_request]
env:
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
lint-commit-message:
diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml
index 25b7ea5a8cc..9b8e99c98e5 100644
--- a/.github/workflows/commit-queue.yml
+++ b/.github/workflows/commit-queue.yml
@@ -15,7 +15,7 @@ on:
- cron: "*/5 * * * *"
env:
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
commitQueue:
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 3d8d66a1254..e36a3fb5194 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -6,7 +6,7 @@ on:
- cron: "0 0 * * *"
env:
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
build-lto:
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
index 6bdaee8d656..987a38e5616 100644
--- a/.github/workflows/linters.yml
+++ b/.github/workflows/linters.yml
@@ -12,7 +12,7 @@ on:
env:
PYTHON_VERSION: 3.9
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
lint-addon-docs:
diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml
index 89793e85953..64f58f2e96f 100644
--- a/.github/workflows/misc.yml
+++ b/.github/workflows/misc.yml
@@ -11,7 +11,7 @@ on:
- v[0-9]+.x
env:
- NODE_VERSION: 14.x
+ NODE_VERSION: lts/*
jobs:
build-docs: