From e6a3b5c87a74eb1cda63a1a9808133b7dccee505 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 10 Apr 2019 23:39:48 +0200 Subject: [PATCH] docs: use latest npm action because of an install failure I'm not 100% sure why it happens, but there might be something wrong with the `1.0.0` version on this action. I think they are on 2 now, but it isn't "released" yet. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3d206445..12c8d31e 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ workflow "Install and Publish" { } action "Install" { - uses = "actions/npm@1.0.0" + uses = "actions/npm@master" args = "install" } @@ -83,13 +83,13 @@ workflow "Install and Publish" { } action "Install" { - uses = "actions/npm@1.0.0" + uses = "actions/npm@master" args = "install" } action "Test" { needs = "Install" - uses = "actions/npm@1.0.0" + uses = "actions/npm@master" args = "test" } @@ -122,13 +122,13 @@ workflow "Install, Test and Build Web" { } action "Install" { - uses = "actions/npm@1.0.0" + uses = "actions/npm@master" args = "install" } action "Test" { needs = "Install" - uses = "actions/npm@1.0.0" + uses = "actions/npm@master" args = "test" }