Skip to content

Commit 1c209ab

Browse files
committed
ci: update golangi-lint to v1.54.2
Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 69f5ccf commit 1c209ab

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ EXTRA_BUILD_ARGS ?= ""
1010

1111
CERT_MANAGER_VERSION ?= v1.12.2
1212
CONTROLLER_GEN_VERSION ?= v0.13.0
13-
GOLANGCI_LINT_VERSION ?= v1.53.3
13+
GOLANGCI_LINT_VERSION ?= v1.54.2
1414
KIND_VERSION ?= v0.19.0
1515
GOLICENSES_VERSION ?= v1.6.0
1616
# Default bundle image tag

pkg/controllers/reconciler_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ func TestUpgrade(test *testing.T) {
6060
},
6161
}
6262

63-
for _, t := range tests {
63+
for i := range tests {
64+
t := tests[i]
65+
6466
upgrade := UpgradeImages(&t.image, &t.initimage)
6567

6668
if !(upgrade == t.upgrade && t.image == t.expectedImage && t.initimage == t.expectedInitimage) {

0 commit comments

Comments
 (0)