From 74189b6cf9d58b8d6eba1c56c2109f0409b9e535 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 10 Sep 2025 13:54:40 +0200 Subject: [PATCH] chore: update magefile to reference up to date golangci lint --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index 6726a9fdf..f768565c1 100644 --- a/magefile.go +++ b/magefile.go @@ -607,7 +607,7 @@ func checkGolangCiLintInstalled() { mg.Deps(initVars) if err := exec.Command("golangci-lint").Run(); err != nil && strings.Contains(err.Error(), "executable file not found") { fmt.Println("Please manually install golangci-lint by running") - fmt.Println("curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.56.2") + fmt.Println("curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.4.0") os.Exit(1) } }