Skip to content

Commit

Permalink
github actions: Update checkout action to v2 (#210)
Browse files Browse the repository at this point in the history
Fixes a bug where checkout fails making the build check also fails.

Signed-off-by: Marc Lopez <[email protected]>
  • Loading branch information
marclop authored Mar 12, 2020
1 parent d38d2f3 commit d15a85f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id: go

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

- name: Cache Go Modules
uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v1
Expand Down

0 comments on commit d15a85f

Please sign in to comment.