Skip to content

Commit e3cd85a

Browse files
committed
fix: bump node versions in workflows
1 parent 96f373b commit e3cd85a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/create-release-action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v2
2525
- uses: actions/setup-node@v2
2626
with:
27-
node-version: "12.x"
27+
node-version: "lts/*"
2828
- uses: actions/cache@v1
2929
with:
3030
path: ~/.npm

lib/create-test-action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node_version: ["12", "14"]
21+
node_version: ["12", "14", "16"]
2222
2323
steps:
2424
- uses: actions/checkout@v2

lib/create-update-prettier-action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-node@v2
2020
with:
21-
version: 12
21+
node-version: "lts/*"
2222
- uses: actions/cache@v1
2323
with:
2424
path: ~/.npm

0 commit comments

Comments
 (0)