Skip to content

Commit babd6dc

Browse files
committed
Use major version of actions
1 parent 3daa72e commit babd6dc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
-
2020
name: Checkout
21-
uses: actions/checkout@v2.3.3
21+
uses: actions/checkout@v2
2222
-
2323
name: Labeler (test)
2424
uses: ./

.github/workflows/labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
-
1616
name: Checkout
17-
uses: actions/checkout@v2.3.3
17+
uses: actions/checkout@v2
1818
-
1919
name: Run Labeler
20-
uses: crazy-max/ghaction-github-labeler@v3.1.0
20+
uses: crazy-max/ghaction-github-labeler@v3

.github/workflows/pre-checkin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
-
1616
name: Checkout
17-
uses: actions/checkout@v2.3.3
17+
uses: actions/checkout@v2
1818
-
1919
name: Install
2020
run: yarn install

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
-
1919
name: Checkout
20-
uses: actions/checkout@v2.3.3
20+
uses: actions/checkout@v2
2121
-
2222
name: Install
2323
run: yarn install
@@ -28,7 +28,7 @@ jobs:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
-
3030
name: Upload coverage
31-
uses: codecov/codecov-action@v1.0.14
31+
uses: codecov/codecov-action@v1
3232
if: success()
3333
with:
3434
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)