.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:
Lili Cosic 2021-02-24 17:17:00 +01:00
parent c3121e74bf
commit e62e963797
1 changed files with 1 additions and 1 deletions

View File

@ -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