Skip to content

Commit f63b906

Browse files
authored
Merge pull request actions#48 from ericsciple/users/ericsciple/m166retry
add retries and error handling
2 parents 623089a + 9c4f82d commit f63b906

File tree

3 files changed

+428
-398
lines changed

3 files changed

+428
-398
lines changed

.github/workflows/workflow.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
operating-system: [ubuntu-latest, windows-latest]
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@master
12+
uses: actions/checkout@v2
1313

14-
- name: Set Node.js 10.x
15-
uses: actions/setup-node@master
14+
- name: Setup Node.js 12.x
15+
uses: actions/setup-node@v1
1616
with:
17-
node-version: 10.x
17+
node-version: 12.x
1818

1919
- name: npm install
2020
run: npm install
@@ -40,12 +40,12 @@ jobs:
4040
run: |
4141
echo "127.0.0.0 registry.npm.js nodejs.org github.com api.github.com download.java.net static.azul.com" | sudo tee -a /etc/hosts
4242
- name: Checkout
43-
uses: actions/checkout@master
43+
uses: actions/checkout@v2
4444

45-
- name: Set Node.js 10.x
46-
uses: actions/setup-node@master
45+
- name: Setup Node.js 12.x
46+
uses: actions/setup-node@v1
4747
with:
48-
node-version: 10.x
48+
node-version: 12.x
4949

5050
- name: npm install
5151
run: npm install

0 commit comments

Comments
 (0)