From e62e963797efb5dbe99b1ff67db588f4f1d0c2a7 Mon Sep 17 00:00:00 2001 From: Lili Cosic Date: Wed, 24 Feb 2021 17:17:00 +0100 Subject: [PATCH] .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. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3496fc10..0ea28cb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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