From 06d091ed8459b2a1ade85d80a0bdb20aa270c187 Mon Sep 17 00:00:00 2001 From: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Date: Wed, 12 Mar 2025 15:06:22 -0400 Subject: [PATCH] misc(dev): update Makefile (#1820) Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 53ba695f..80b9c746 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,7 @@ TARGETS=darwin linux windows TERRAFORM_PLUGIN_EXTENSION= VERSION=0.73.1# x-release-please-version -# renovate: datasource=github-releases depName=golangci/golangci-lint -GOLANGCI_LINT_VERSION=v1.64.5 +GOLANGCI_LINT_VERSION=v1.64.5# renovate: datasource=github-releases depName=golangci/golangci-lint # check if opentofu is installed and use it if it is, # otherwise use terraform @@ -112,6 +111,7 @@ testacc: .PHONY: lint lint: + # NOTE: This target runs only locally, not in CI. See .github/workflows/golangci-lint.yml for CI linting. @docker run -t --rm -v $$(pwd):/app -v ~/.cache/golangci-lint/$(GOLANGCI_LINT_VERSION):/root/.cache -w /app golangci/golangci-lint:$(GOLANGCI_LINT_VERSION) golangci-lint run --fix .PHONY: release-build