Skip to content

Commit 6d1dcf2

Browse files
feat: use checkout v2
1 parent 1612806 commit 6d1dcf2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/check_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Check package version
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v1
8+
- uses: actions/checkout@v2
99
with:
1010
fetch-depth: 3
1111
- name: Check package version

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: ESLint
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v2
1717
with:
1818
fetch-depth: 3
1919
- name: Get Yarn Cache Directory
@@ -46,7 +46,7 @@ jobs:
4646
matrix:
4747
node: ['10', '11', '12']
4848
steps:
49-
- uses: actions/checkout@v1
49+
- uses: actions/checkout@v2
5050
with:
5151
fetch-depth: 3
5252
- name: Setup node

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@master
14+
uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 3
1717
- name: Cache node modules
@@ -42,7 +42,7 @@ jobs:
4242
needs: test
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@master
45+
uses: actions/checkout@v2
4646
with:
4747
fetch-depth: 3
4848
- name: Setup Node.js

0 commit comments

Comments
 (0)