0
1
mirror of https://github.com/actions/checkout synced 2024-06-01 18:38:03 +02:00

Change version to node-version

version is deprecated and replaced by node-version
This commit is contained in:
Doug Moscrop 2019-08-15 16:34:21 -04:00 committed by GitHub
parent 53bed0742e
commit c9baabb369
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
version: 10.x
node-version: 10.x
- run: npm install
- run: npm test
```