Skip to content

Commit d15a85f

Browse files
authored
github actions: Update checkout action to v2 (#210)
Fixes a bug where checkout fails making the build check also fails. Signed-off-by: Marc Lopez <marc5.12@outlook.com>
1 parent d38d2f3 commit d15a85f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
id: go
1515

1616
- name: Check out code into the Go module directory
17-
uses: actions/checkout@v1
17+
uses: actions/checkout@v2
1818

1919
- name: Cache Go Modules
2020
uses: actions/cache@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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@v1
14+
uses: actions/checkout@v2
1515

1616
- name: Set up Go
1717
uses: actions/setup-go@v1

0 commit comments

Comments
 (0)