From 909c92a11218be9917d804e24db1fa3760f5661f Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 30 Dec 2020 13:03:56 +0800 Subject: [PATCH] explicitily set the Go version in the linting workflow This should be set to the most recent (stable) Go version that we support. --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 295e72c1e..702ff5d02 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: go install ./... + - uses: actions/setup-go@v2 + with: + go-version: "1.15.x" - name: Check that no non-test files import Ginkgo or Gomega run: .github/workflows/no_ginkgo.sh - name: Check that go.mod is tidied