From 747fa4805ab9e0ba4ad4e0db995286b4ad639c8b Mon Sep 17 00:00:00 2001 From: Danny Guo Date: Wed, 2 Oct 2019 19:26:15 -0400 Subject: [PATCH] Fix a setup-node warning setup-node currently outputs: ##[warning]Input 'version' has been deprecated with message: The version property will not be supported after October 1, 2019. Use node-version instead --- .github/workflows/unit-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 6b4fd36f..ac66f9ac 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -17,7 +17,7 @@ jobs: - name: Set Node.js 10.x uses: actions/setup-node@master with: - version: 10.x + node-version: 10.x - name: npm install run: npm install @@ -46,7 +46,7 @@ jobs: - name: Set Node.js 10.x uses: actions/setup-node@master with: - version: 10.x + node-version: 10.x - name: npm install run: npm install @@ -69,7 +69,7 @@ jobs: - name: Set Node.js 10.x uses: actions/setup-node@master with: - version: 10.x + node-version: 10.x - name: npm install run: npm install