From c155ea290b165cca8e6f40621c323c53ff144219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Soul=C3=A9?= Date: Wed, 3 Aug 2022 17:26:39 +0200 Subject: [PATCH] ci: test with go1.19 but still use go1.18.5 for linter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit until golangci/golangci-lint/pull/3037 is resolved. Signed-off-by: Maxime Soulé --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70545d35..27d509e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: test: strategy: matrix: - go-version: [1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, tip] + go-version: [1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.19.x, tip] full-tests: [false] include: - go-version: 1.18.x @@ -35,7 +35,7 @@ jobs: false fi curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | - sh -s -- -b $HOME/go/bin v1.45.0 + sh -s -- -b $HOME/go/bin v1.47.2 echo $PATH $HOME/go/bin/golangci-lint run --max-issues-per-linter 0 \ --max-same-issues 0 \