Skip to content

Commit b39fdd8

Browse files
renovate[bot]robertgraeffreshnm
authored
fix(deps): update module sigs.k8s.io/controller-runtime to v0.21.0 (#55)
* fix(deps): update module sigs.k8s.io/controller-runtime to v0.21.0 * fix: ignore deprecation --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Graeff <robert.graeff@sap.com> Co-authored-by: René Schünemann <rene.schuenemann@sap.com>
1 parent b1499cb commit b39fdd8

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
k8s.io/apimachinery v0.33.1
1919
k8s.io/client-go v0.33.1
2020
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979
21-
sigs.k8s.io/controller-runtime v0.20.4
21+
sigs.k8s.io/controller-runtime v0.21.0
2222
sigs.k8s.io/gateway-api v1.3.0
2323
sigs.k8s.io/yaml v1.4.0
2424
)

go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
22
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
3+
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
4+
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
35
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
46
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
57
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -224,8 +226,8 @@ k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff h1:/usPimJzUKKu+m+TE36gUy
224226
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8=
225227
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 h1:jgJW5IePPXLGB8e/1wvd0Ich9QE97RvvF3a8J3fP/Lg=
226228
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
227-
sigs.k8s.io/controller-runtime v0.20.4 h1:X3c+Odnxz+iPTRobG4tp092+CvBU9UK0t/bRf+n0DGU=
228-
sigs.k8s.io/controller-runtime v0.20.4/go.mod h1:xg2XB0K5ShQzAgsoujxuKN4LNXR2LfwwHsPj7Iaw+XY=
229+
sigs.k8s.io/controller-runtime v0.21.0 h1:CYfjpEuicjUecRk+KAeyYh+ouUBn4llGyDYytIGcJS8=
230+
sigs.k8s.io/controller-runtime v0.21.0/go.mod h1:OSg14+F65eWqIu4DceX7k/+QRAbTTvxeQSNSOQpukWM=
229231
sigs.k8s.io/gateway-api v1.3.0 h1:q6okN+/UKDATola4JY7zXzx40WO4VISk7i9DIfOvr9M=
230232
sigs.k8s.io/gateway-api v1.3.0/go.mod h1:d8NV8nJbaRbEKem+5IuxkL8gJGOZ+FJ+NvOIltV8gDk=
231233
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=

pkg/testing/utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ func ShouldNotReconcile(ctx context.Context, reconciler reconcile.Reconciler, re
3535

3636
// ExpectRequeue expects the given result to indicate a requeue.
3737
func ExpectRequeue(res reconcile.Result) {
38-
requeue := res.Requeue || res.RequeueAfter > 0
38+
requeue := res.Requeue || res.RequeueAfter > 0 //nolint:staticcheck
3939
gomega.ExpectWithOffset(1, requeue).To(gomega.BeTrue())
4040
}
4141

4242
// ExpectNoRequeue expects the given result to indicate no requeue.
4343
func ExpectNoRequeue(res reconcile.Result) {
44-
requeue := res.Requeue || res.RequeueAfter > 0
44+
requeue := res.Requeue || res.RequeueAfter > 0 //nolint:staticcheck
4545
gomega.ExpectWithOffset(1, requeue).To(gomega.BeFalse())
4646
}
4747

0 commit comments

Comments
 (0)