From f5361a865663a76a981f3b63e833f30fec65605d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 19 Dec 2025 13:11:27 -0500 Subject: [PATCH] Bump golangci-lint to 2.7.2 --- .pre-commit-config.yaml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 23fa67c3..cfc678d7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,7 @@ repos: - id: go-mod-tidy - repo: https://github.com/golangci/golangci-lint - rev: v2.4.0 + rev: v2.7.2 hooks: - id: golangci-lint-full args: ["-v"] diff --git a/Makefile b/Makefile index 32e79ce3..c80f0287 100644 --- a/Makefile +++ b/Makefile @@ -354,7 +354,7 @@ govet: get-ci-tools # Run go test against code gotest: test -GOLANGCI_LINT_VERSION ?= v2.4.0 +GOLANGCI_LINT_VERSION ?= v2.7.2 .PHONY: golangci-lint golangci-lint: test -s $(LOCALBIN)/golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s $(GOLANGCI_LINT_VERSION)