Skip to content

Commit 5c355be

Browse files
authored
use 14 instead of 12 in README beacuse peoply copy (actions#235)
1 parent 46071b5 commit 5c355be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-node@v2
2121
with:
22-
node-version: '12'
22+
node-version: '14'
2323
```
2424
2525
The action will first check the local cache for a semver match. The hosted images have been updated with the latest of each LTS from v8, v10, v12, and v14. `self-hosted` machines will benefit from the cache as well only downloading once. The action will pull LTS versions from [node-versions releases](https://github.com/actions/node-versions/releases) and on miss or failure will fall back to the previous behavior of downloading directly from [node dist](https://nodejs.org/dist/).
@@ -36,7 +36,7 @@ steps:
3636
- uses: actions/checkout@v2
3737
- uses: actions/setup-node@v2
3838
with:
39-
node-version: '12'
39+
node-version: '14'
4040
- run: npm install
4141
- run: npm test
4242
```
@@ -54,7 +54,7 @@ steps:
5454
- uses: actions/checkout@v2
5555
- uses: actions/setup-node@v2
5656
with:
57-
node-version: '12'
57+
node-version: '14'
5858
check-latest: true
5959
- run: npm install
6060
- run: npm test
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-16.04
6868
strategy:
6969
matrix:
70-
node: [ '10', '12' ]
70+
node: [ '12', '14' ]
7171
name: Node ${{ matrix.node }} sample
7272
steps:
7373
- uses: actions/checkout@v2
@@ -93,7 +93,7 @@ jobs:
9393
- uses: actions/checkout@v2
9494
- uses: actions/setup-node@v2
9595
with:
96-
node-version: '12'
96+
node-version: '14'
9797
architecture: 'x64' # optional, x64 or x86. If not specified, x64 will be used by default
9898
- run: npm install
9999
- run: npm test

0 commit comments

Comments
 (0)