From 1a42c0937c7b2de197143980815b2260de5cdead Mon Sep 17 00:00:00 2001 From: "scality-renovate[bot]" <234218835+scality-renovate[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 04:27:10 +0000 Subject: [PATCH] chore(deps): update dependency golangci/golangci-lint to v2.13.1 --- .devcontainer/Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index aea9526..3b3354b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,7 +6,7 @@ USER vscode RUN sudo mkdir -p /usr/local/share/zsh/site-functions # renovate: datasource=github-releases depName=golangci/golangci-lint -ARG GOLANGCI_VERSION=v2.12.2 +ARG GOLANGCI_VERSION=v2.13.1 # Fetch the install script pinned to the release tag (not HEAD) before piping to sh. RUN curl -sSfL "https://raw.githubusercontent.com/golangci/golangci-lint/${GOLANGCI_VERSION}/install.sh" \ | sudo sh -s -- -b /usr/local/bin ${GOLANGCI_VERSION} \ diff --git a/Makefile b/Makefile index ea6e031..0ba741a 100644 --- a/Makefile +++ b/Makefile @@ -211,7 +211,7 @@ ENVTEST_K8S_VERSION ?= $(shell v='$(call gomodver,k8s.io/api)'; \ printf '%s\n' "$$v" | sed -E 's/^v?[0-9]+\.([0-9]+).*/1.\1/') # renovate: datasource=github-releases depName=golangci/golangci-lint -GOLANGCI_LINT_VERSION ?= v2.12.2 +GOLANGCI_LINT_VERSION ?= v2.13.1 .PHONY: kustomize kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.