We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69f5ccf commit 1c209abCopy full SHA for 1c209ab
Makefile
@@ -10,7 +10,7 @@ EXTRA_BUILD_ARGS ?= ""
10
11
CERT_MANAGER_VERSION ?= v1.12.2
12
CONTROLLER_GEN_VERSION ?= v0.13.0
13
-GOLANGCI_LINT_VERSION ?= v1.53.3
+GOLANGCI_LINT_VERSION ?= v1.54.2
14
KIND_VERSION ?= v0.19.0
15
GOLICENSES_VERSION ?= v1.6.0
16
# Default bundle image tag
pkg/controllers/reconciler_test.go
@@ -60,7 +60,9 @@ func TestUpgrade(test *testing.T) {
60
},
61
}
62
63
- for _, t := range tests {
+ for i := range tests {
64
+ t := tests[i]
65
+
66
upgrade := UpgradeImages(&t.image, &t.initimage)
67
68
if !(upgrade == t.upgrade && t.image == t.expectedImage && t.initimage == t.expectedInitimage) {
0 commit comments