From e386069158a9da167d9f64efc1e9402e53571f15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 13 Jul 2021 15:07:44 +0200 Subject: [PATCH] static-checks: Restrict static checks to go 1.15 and 1.16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seems that we get different results when running it with go 1.13. Instead of figuring out why it doesn't work as expected with an EOL version of go, let's just not run the tests on go versions that are already dead. https://endoflife.date/go Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index f0045ff82e..b8337f6ebe 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -12,7 +12,7 @@ jobs: if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} strategy: matrix: - go-version: [1.14.x, 1.15.x, 1.16.x] + go-version: [1.15.x, 1.16.x] os: [ubuntu-20.04] runs-on: ${{ matrix.os }} env: