From 3f141c5d6b7f01b40eb98535e8368c8bc5498bb5 Mon Sep 17 00:00:00 2001 From: christophe-duc Date: Thu, 8 Jan 2026 19:49:23 -0400 Subject: [PATCH] another try --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 269487d2..a8f98322 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,10 +137,9 @@ jobs: restore-keys: | ${{runner.os}}-go- - name: Lint - uses: golangci/golangci-lint-action@v6 - with: - version: latest - args: --build-tags=containers_image_openpgp,exclude_graphdriver_btrfs --timeout=10m --verbose + run: | + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.8 + golangci-lint run --build-tags=containers_image_openpgp,exclude_graphdriver_btrfs --verbose --out-format=colored-line-number 2>&1 || echo "Exit code: $?" - name: Format code run: | if [ $(find . -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then