Skip to content

Commit fdba118

Browse files
Use same version of golangci-lint in makefile as github actions (#4731)
The .github/workflows/golangci-lint.yml spec uses v1.55.2 for the golangci-lint version. This commit updates the make target to use the same version for consistency as the current version causes a panic when running on a darwin arm64 system.
1 parent 57647f0 commit fdba118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ check:
4848
## check-go: download and run the go linter.
4949
.PHONY: check-go
5050
check-go: ## - Run golangci-lint
51-
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.44.2
51+
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.55.2
5252
@./bin/golangci-lint run -v
5353

5454
## check-no-changes : Check there is no local changes.

0 commit comments

Comments
 (0)