Skip to content

Commit 729228b

Browse files
committed
chore: remove deprecated --out-format flag from golangci-lint in make lint-ci target
1 parent f950290 commit 729228b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ GO_SRC += $(foreach dir,$(REC_DIRS),$(shell find $(dir) -name "*.go"))
8888
########## Required Tools ##########
8989
# Go Package required
9090
PKG_GOX := github.com/iwilltry42/[email protected]
91-
PKG_GOLANGCI_LINT_VERSION := 2.2.1
91+
PKG_GOLANGCI_LINT_VERSION := 2.4.0
9292
PKG_GOLANGCI_LINT_SCRIPT := https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh
9393
PKG_GOLANGCI_LINT := github.com/golangci/golangci-lint/cmd/golangci-lint@v${PKG_GOLANGCI_LINT_VERSION}
9494

@@ -172,7 +172,7 @@ lint:
172172
@golangci-lint run -D $(GOLANGCI_LINT_DISABLED_LINTERS) $(LINT_DIRS)
173173

174174
ci-lint:
175-
golangci-lint run --timeout 5m0s --out-format=github-actions -D $(GOLANGCI_LINT_DISABLED_LINTERS) $(LINT_DIRS)
175+
golangci-lint run --timeout 5m0s -D $(GOLANGCI_LINT_DISABLED_LINTERS) $(LINT_DIRS)
176176

177177
check: check-fmt lint
178178

0 commit comments

Comments
 (0)