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>
This commit is contained in:
parent
3a10a37f28
commit
d6bb7ed6c8
2
.github/workflows/auto-start-ci.yml
vendored
2
.github/workflows/auto-start-ci.yml
vendored
@ -10,7 +10,7 @@ on:
|
||||
- cron: "*/5 * * * *"
|
||||
|
||||
env:
|
||||
NODE_VERSION: 14.x
|
||||
NODE_VERSION: lts/*
|
||||
|
||||
jobs:
|
||||
startCI:
|
||||
|
2
.github/workflows/commit-lint.yml
vendored
2
.github/workflows/commit-lint.yml
vendored
@ -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:
|
||||
|
2
.github/workflows/commit-queue.yml
vendored
2
.github/workflows/commit-queue.yml
vendored
@ -15,7 +15,7 @@ on:
|
||||
- cron: "*/5 * * * *"
|
||||
|
||||
env:
|
||||
NODE_VERSION: 14.x
|
||||
NODE_VERSION: lts/*
|
||||
|
||||
jobs:
|
||||
commitQueue:
|
||||
|
2
.github/workflows/daily.yml
vendored
2
.github/workflows/daily.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
env:
|
||||
NODE_VERSION: 14.x
|
||||
NODE_VERSION: lts/*
|
||||
|
||||
jobs:
|
||||
build-lto:
|
||||
|
2
.github/workflows/linters.yml
vendored
2
.github/workflows/linters.yml
vendored
@ -12,7 +12,7 @@ on:
|
||||
|
||||
env:
|
||||
PYTHON_VERSION: 3.9
|
||||
NODE_VERSION: 14.x
|
||||
NODE_VERSION: lts/*
|
||||
|
||||
jobs:
|
||||
lint-addon-docs:
|
||||
|
2
.github/workflows/misc.yml
vendored
2
.github/workflows/misc.yml
vendored
@ -11,7 +11,7 @@ on:
|
||||
- v[0-9]+.x
|
||||
|
||||
env:
|
||||
NODE_VERSION: 14.x
|
||||
NODE_VERSION: lts/*
|
||||
|
||||
jobs:
|
||||
build-docs:
|
||||
|
Loading…
x
Reference in New Issue
Block a user