From 814555b7e81bb9c461fb4df5bd424f1d4f34c94b Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 11 Feb 2026 22:10:21 -0300 Subject: [PATCH] [CONFIG] golangci-lint upgrade to 9.2.0 --- .github/workflows/go-lint.yml | 4 +++- Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index 140f31e..f5bbf7d 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -38,9 +38,11 @@ jobs: - name: Lint (go vet) run: go vet -v ./... + # yamllint disable rule:line-length - name: Lint golangci-lint - uses: golangci/golangci-lint-action@v9 + uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: args: --timeout=10m version: v2.1.0 skip-cache: true + # yamllint enable rule:line-length diff --git a/Dockerfile b/Dockerfile index 6a0e090..d1bb3a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BUILDTIME_IMAGE=golang:1.25.7-alpine3.23 +ARG BUILDTIME_IMAGE=golang:1.26.0-alpine3.23 ARG RUNTIME_IMAGE=scratch ############################################################################### @@ -32,7 +32,7 @@ RUN apk add --update --no-cache make nodejs npm wget \ && npm install -g --ignore-scripts markdownlint-cli@0.47.0 ADD https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh ${WORKDIR}/ -RUN sh install.sh -b $(go env GOPATH)/bin v2.0.0 \ +RUN sh install.sh -b $(go env GOPATH)/bin v2.9.0 \ && rm install.sh \ && golangci-lint --version