Skip to content

Commit

Permalink
docs: use latest npm action because of an install failure
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
byCedric committed Apr 10, 2019
1 parent 96ead1e commit e6a3b5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ workflow "Install and Publish" {
}
action "Install" {
uses = "actions/npm@1.0.0"
uses = "actions/npm@master"
args = "install"
}
Expand All @@ -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"
}
Expand Down Expand Up @@ -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"
}
Expand Down

0 comments on commit e6a3b5c

Please sign in to comment.