From 13faa38c5666044cb1d66e368608b9f1e32d6547 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Sun, 17 May 2026 15:13:32 +0100 Subject: [PATCH] lint: migrate to `golangci-lint`'s install script on `main` Via [0], otherwise downloads fails with: ``` golangci/golangci-lint err hash_sha256_verify checksum for '/tmp/.../golangci-lint-2.12.2-linux-amd64.tar.gz' did not verify ``` [0]: https://redirect.github.com/golangci/golangci-lint/issues/6572#issuecomment-4400895705 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f09a336c11..9901df12d5 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ help: @echo " lint lint the project" $(GOBIN)/golangci-lint: - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v2.10.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/main/install.sh | sh -s -- -b $(GOBIN) v2.10.1 .PHONY: tools tools: $(GOBIN)/golangci-lint