From 0b5c155cad858172ff551b2d5402577a840ef409 Mon Sep 17 00:00:00 2001 From: Ramon Quitales Date: Fri, 11 Apr 2025 13:23:22 -0700 Subject: [PATCH] chore: pin golangci-lint to latest v1 release (#518) This PR pins the installation of golangci-lint to the latest v1 release (v1.64.8). Installing from latest pulls in v2 changes that causes a runtime panic when running locally. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d5e971..a43c516 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,7 @@ ${PULUMI}: go.sum GOBIN=${WORKING_DIR}/bin go install github.com/pulumi/pulumi-yaml/cmd/pulumi-converter-yaml ${GOGLANGCILINT}: go.sum - GOBIN=${WORKING_DIR}/bin go install github.com/golangci/golangci-lint/cmd/golangci-lint + GOBIN=${WORKING_DIR}/bin go install github.com/golangci/golangci-lint/cmd/golangci-lint@8b37f14 define pulumi_login export PULUMI_CONFIG_PASSPHRASE=asdfqwerty1234; \