Skip to content

Commit 8908201

Browse files
authored
update linter, and fix linting error (#1165)
#1154 seems to have broken the linting somehow, this PR aims to fix it Signed-off-by: Eitan Yarmush <[email protected]>
1 parent bae9326 commit 8908201

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ jobs:
242242
- name: golangci-lint
243243
uses: golangci/golangci-lint-action@v9
244244
with:
245-
version: v2.6.2
245+
version: v2.7.2
246246
working-directory: go
247247

248248
python-test:

go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ CONTROLLER_TOOLS_VERSION ?= v0.19.0
140140
ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller-runtime | awk -F'[v.]' '{printf "release-%d.%d", $$2, $$3}')
141141
#ENVTEST_K8S_VERSION is the version of Kubernetes to use for setting up ENVTEST binaries (i.e. 1.31)
142142
ENVTEST_K8S_VERSION ?= $(shell go list -m -f "{{ .Version }}" k8s.io/api | awk -F'[v.]' '{printf "1.%d", $$3}')
143-
GOLANGCI_LINT_VERSION ?= v2.5.0
143+
GOLANGCI_LINT_VERSION ?= v2.7.2
144144

145145
.PHONY: controller-gen
146146
controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessary.

0 commit comments

Comments
 (0)