Skip to content

Commit 915a72c

Browse files
Update actions/checkout action to v2 (#191)
Co-authored-by: Renovate Bot <[email protected]>
1 parent c7a42a0 commit 915a72c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.event.pull_request.head.repo.full_name == github.repository
1313
steps:
1414
- name: Checkout Master
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v2
1616
- name: Use Node
1717
uses: actions/setup-node@v1
1818
with:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node_version: [10, 14]
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v1
22+
uses: actions/checkout@v2
2323
- name: Use Node ${{matrix.node_version}}
2424
uses: actions/setup-node@master
2525
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Master
11-
uses: actions/checkout@v1
11+
uses: actions/checkout@v2
1212
- name: Configure Git Credentials
1313
run: |
1414
git config --global user.email "[email protected]"

0 commit comments

Comments
 (0)