From 203b59c712b0bba09bf8cf034168bed8db81eeb7 Mon Sep 17 00:00:00 2001 From: Evan Baker Date: Wed, 17 Jan 2024 19:40:58 -0600 Subject: [PATCH] fix: lint vs release branch instead of master (#2352) Signed-off-by: Evan Baker --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2174c473f8..77a7c55d64 100644 --- a/Makefile +++ b/Makefile @@ -695,7 +695,7 @@ clean: ## Clean build artifacts. LINT_PKG ?= . lint: $(GOLANGCI_LINT) ## Fast lint vs default branch showing only new issues. - GOGC=20 $(GOLANGCI_LINT) run --new-from-rev master --timeout 10m -v $(LINT_PKG)/... + GOGC=20 $(GOLANGCI_LINT) run --new-from-rev release/v1.4 --timeout 10m -v $(LINT_PKG)/... lint-all: $(GOLANGCI_LINT) ## Lint the current branch in entirety. GOGC=20 $(GOLANGCI_LINT) run -v $(LINT_PKG)/...