.github/workflows/ci.yml: We were not pinning to specific go version
this caused the go modules check to fail, as latest go version introduced breaking changes it seems to modules.
This commit is contained in:
parent
c3121e74bf
commit
e62e963797
|
|
@ -71,7 +71,7 @@ jobs:
|
|||
- name: Set up Go 1.x
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.15
|
||||
go-version: 1.15
|
||||
id: go
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
|
|
|
|||
Loading…
Reference in New Issue