Skip to content

Commit d6bb7ed

Browse files
Trottnodejs-github-bot
authored andcommitted
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: #39538 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 3a10a37 commit d6bb7ed

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/auto-start-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- cron: "*/5 * * * *"
1111

1212
env:
13-
NODE_VERSION: 14.x
13+
NODE_VERSION: lts/*
1414

1515
jobs:
1616
startCI:

.github/workflows/commit-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Commit messages adheres to guidelines at https://goo.gl/p2fr5Q"
33
on: [pull_request]
44

55
env:
6-
NODE_VERSION: 14.x
6+
NODE_VERSION: lts/*
77

88
jobs:
99
lint-commit-message:

.github/workflows/commit-queue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- cron: "*/5 * * * *"
1616

1717
env:
18-
NODE_VERSION: 14.x
18+
NODE_VERSION: lts/*
1919

2020
jobs:
2121
commitQueue:

.github/workflows/daily.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 0 * * *"
77

88
env:
9-
NODE_VERSION: 14.x
9+
NODE_VERSION: lts/*
1010

1111
jobs:
1212
build-lto:

.github/workflows/linters.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
PYTHON_VERSION: 3.9
15-
NODE_VERSION: 14.x
15+
NODE_VERSION: lts/*
1616

1717
jobs:
1818
lint-addon-docs:

.github/workflows/misc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- v[0-9]+.x
1212

1313
env:
14-
NODE_VERSION: 14.x
14+
NODE_VERSION: lts/*
1515

1616
jobs:
1717
build-docs:

0 commit comments

Comments
 (0)