Update actions/checkout to v2

9455766 · Jonathan Clem · 2020-05-14 20:25

4 files +8 -6

Files changed

modified .github/workflows/licensed.yml
+3 −2
@@ -10,14 +10,15 @@ jobs:
10 10 runs-on: ubuntu-latest
11 11 name: Check licenses
12 12 steps:
13 - uses: actions/checkout@v1.0.0
13 + - uses: actions/checkout@v2
14 14 - uses: actions/cache@v1
15 15 with:
16 16 path: ~/.npm
17 17 key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}}
18 18 restore-keys: ${{runner.os}}-npm-
19 19 - run: npm ci
20 - run: |-
20 + - name: Install licensed
21 + run: |-
21 22 cd /tmp
22 23 curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/2.3.2/licensed-2.3.2-linux-x64.tar.gz
23 24 sudo tar -xzf licensed.tar.gz
modified .github/workflows/test.yml
+1 −1
@@ -22,7 +22,7 @@ jobs:
22 22 - otp-version: 22.0
23 23 elixir-version: master
24 24 steps:
25 - uses: actions/checkout@v1.0.0
25 + - uses: actions/checkout@v2
26 26 - name: Use actions/setup-elixir
27 27 uses: ./
28 28 with:
modified dist/.github/workflows/licensed.yml
+3 −2
@@ -10,14 +10,15 @@ jobs:
10 10 runs-on: ubuntu-latest
11 11 name: Check licenses
12 12 steps:
13 - uses: actions/checkout@v1.0.0
13 + - uses: actions/checkout@v2
14 14 - uses: actions/cache@v1
15 15 with:
16 16 path: ~/.npm
17 17 key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}}
18 18 restore-keys: ${{runner.os}}-npm-
19 19 - run: npm ci
20 - run: |-
20 + - name: Install licensed
21 + run: |-
21 22 cd /tmp
22 23 curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/2.3.2/licensed-2.3.2-linux-x64.tar.gz
23 24 sudo tar -xzf licensed.tar.gz
modified dist/.github/workflows/test.yml
+1 −1
@@ -22,7 +22,7 @@ jobs:
22 22 - otp-version: 22.0
23 23 elixir-version: master
24 24 steps:
25 - uses: actions/checkout@v1.0.0
25 + - uses: actions/checkout@v2
26 26 - name: Use actions/setup-elixir
27 27 uses: ./
28 28 with:

Parents: bff9ed8