From 02c1792d0226afc1175a3358d61eeef585891c6c Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Sat, 22 Aug 2026 21:17:33 +0200 Subject: [PATCH] update linter --- .woodpecker/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 5592c8a..9b8393b 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -3,6 +3,8 @@ matrix: - linux/amd64 goversion: - 1.26 + lintversion: + - v2.12.2 labels: platform: ${platform} @@ -21,7 +23,7 @@ steps: event: [push] image: golang:${goversion} commands: - - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.5.0 + - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin ${lintversion} - golangci-lint --version - golangci-lint run ./... depends_on: [build]