From 2356bd0c84cacaf7350a50080cecb5007db01b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Soul=C3=A9?= Date: Mon, 7 Oct 2024 09:41:59 +0200 Subject: [PATCH] chore: fix CI tip build + switch to golangci-lint 1.61.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 619fc0a..07f3628 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Setup go run: | - curl -sL https://raw.githubusercontent.com/maxatome/install-go/v3.5/install-go.pl | + curl -sL https://raw.githubusercontent.com/maxatome/install-go/v3.6/install-go.pl | perl - ${{ matrix.go-version }} $HOME/go - name: Checkout code @@ -32,7 +32,7 @@ jobs: if: matrix.full-tests run: | curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | - sh -s -- -b $HOME/go/bin v1.60.1 + sh -s -- -b $HOME/go/bin v1.61.0 $HOME/go/bin/golangci-lint run --max-issues-per-linter 0 \ --max-same-issues 0 \ --exclude="unused-parameter: parameter '[^']+' seems to be unused, consider removing or renaming it as _" \