@@ -32,6 +32,7 @@ RPM_VERSION ?= $(DEB_VERSION)
32
32
RPM_REVISION ?= 0
33
33
34
34
# used by hack/jenkins/release_build_and_upload.sh and KVM_BUILD_IMAGE, see also BUILD_IMAGE below
35
+ # update this only by running `make update-golang-version`
35
36
GO_VERSION ?= 1.16.7
36
37
37
38
# replace "x.y.0" => "x.y". kube-cross and golang.org/dl use different formats for x.y.0 go versions
@@ -66,7 +67,8 @@ MINIKUBE_UPLOAD_LOCATION := gs://${MINIKUBE_BUCKET}
66
67
MINIKUBE_RELEASES_URL =https://github.com/kubernetes/minikube/releases/download
67
68
68
69
KERNEL_VERSION ?= 4.19.182
69
- # latest from https://github.com/golangci/golangci-lint/releases
70
+ # latest from https://github.com/golangci/golangci-lint/releases
71
+ # update this only by running `make update-golint-version`
70
72
GOLINT_VERSION ?= v1.41.1
71
73
# Limit number of default jobs, to avoid the CI builds running out of memory
72
74
GOLINT_JOBS ?= 4
@@ -973,6 +975,12 @@ update-kubernetes-version:
973
975
(cd hack/update/kubernetes_version && \
974
976
go run update_kubernetes_version.go)
975
977
978
+ .PHONY : update-golint-version
979
+ update-golint-version :
980
+ (cd hack/update/golint_version && \
981
+ go run update_golint_version.go)
982
+
983
+
976
984
.PHONY : update-kubernetes-version-pr
977
985
update-kubernetes-version-pr :
978
986
ifndef GITHUB_TOKEN
@@ -1003,4 +1011,4 @@ time-to-k8s-benchmark:
1003
1011
.PHONY : update-gopogh-version
1004
1012
update-gopogh-version : # # update gopogh version
1005
1013
(cd hack/update/gopogh_version && \
1006
- go run update_gopogh_version.go)
1014
+ go run update_gopogh_version.go)
0 commit comments