From c9baabb369dc6fd77877919990b2eefa2af5ca8e Mon Sep 17 00:00:00 2001
From: Doug Moscrop <doug.moscrop@gmail.com>
Date: Thu, 15 Aug 2019 16:34:21 -0400
Subject: [PATCH] Change version to node-version

version is deprecated and replaced by node-version
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index fe28f75..0746be4 100644
--- a/README.md
+++ b/README.md
@@ -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
 ```