Skip to content

Commit fb84cc6

Browse files
committed
chore: run all GH actions using Node LTS, not v12
1 parent 330d773 commit fb84cc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/doctoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '12.x'
17+
node-version: 'lts/*'
1818
- name: Install doctoc
1919
run: npm i -g doctoc
2020
- name: Create README copy and diff with doctoc

.github/workflows/eclint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v3
1111
with:
12-
node-version: '12.x'
12+
node-version: 'lts/*'
1313
- run: npm i -g eclint
1414
- run: eclint check

.github/workflows/markdown-link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: '12.x'
15+
node-version: 'lts/*'
1616
- name: Install markdown-link-check
1717
run: npm i -g markdown-link-check
1818
- name: Run markdown-link-check on MD files

0 commit comments

Comments
 (0)