chore(deps): consolidate all dependabot dependency updates#78
Merged
Conversation
Go modules: - github.com/cert-manager/cert-manager: v1.18.2 → v1.20.0 - github.com/gomodule/redigo: v1.9.2 → v1.9.3 - github.com/samber/lo: v1.51.0 → v1.53.0 - github.com/stretchr/testify: v1.10.0 → v1.11.1 - go.uber.org/zap: v1.27.0 → v1.27.1 GitHub Actions: - docker/build-push-action: v6 → v7 - docker/login-action: v3 → v4 - docker/setup-buildx-action: v3 → v4 - docker/setup-qemu-action: v3 → v4 Closes #68, #69, #70, #71, #72, #73, #74, #75, #76
This was referenced Mar 16, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Consolidates multiple Dependabot updates into a single PR, updating Go module dependencies and Docker-related GitHub Actions used by the CI/release pipelines.
Changes:
- Bump Go dependencies (notably cert-manager, redigo, lo, testify, zap) and refresh
go.sum. - Update Docker GitHub Actions to their next major versions (setup-qemu/buildx/login/build-push).
- Update the module Go version in
go.mod.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Updates direct/indirect Go module versions and bumps the module Go version. |
go.sum |
Recomputed dependency checksums consistent with the module updates. |
.github/workflows/release-pipeline.yaml |
Updates Docker actions used for multi-arch image build/push on releases. |
.github/workflows/pr-pipeline.yaml |
Updates Docker actions used for PR image builds. |
.github/workflows/branch-pipeline.yaml |
Updates Docker actions used for branch builds and publishing images. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| module github.com/chideat/valkey-operator | ||
|
|
||
| go 1.24.0 | ||
| go 1.25.0 |
go mod tidy updated go.mod to require go 1.25 due to updated transitive dependencies (cert-manager v1.20, k8s.io v0.35.x).
Replace deprecated webhook.CustomValidator/CustomDefaulter with admission.Validator[T]/Defaulter[T] generic interfaces required by controller-runtime v0.23. Method signatures now use concrete types instead of runtime.Object, and NewWebhookManagedBy now takes the object as a second argument instead of using .For().
The new generic admission.Validator[T]/Defaulter[T] API passes typed nil (*User)(nil) instead of a nil interface, so the old type assertion nil-check is gone. Add explicit nil pointer guards to restore the expected error behavior tested by user_webhook_test.go.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Combines all 9 open dependabot PRs (#68–#76) into a single update.
Go modules:
github.com/cert-manager/cert-manager: v1.18.2 → v1.20.0 (closes chore(deps): bump github.com/cert-manager/cert-manager from 1.18.2 to 1.20.0 #74)github.com/gomodule/redigo: v1.9.2 → v1.9.3 (closes chore(deps): bump github.com/gomodule/redigo from 1.9.2 to 1.9.3 #76)github.com/samber/lo: v1.51.0 → v1.53.0 (closes chore(deps): bump github.com/samber/lo from 1.51.0 to 1.53.0 #73)github.com/stretchr/testify: v1.10.0 → v1.11.1 (closes chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 #75)go.uber.org/zap: v1.27.0 → v1.27.1 (closes chore(deps): bump go.uber.org/zap from 1.27.0 to 1.27.1 #71)GitHub Actions:
docker/build-push-action: v6 → v7 (closes chore(deps): bump docker/build-push-action from 6 to 7 #68)docker/login-action: v3 → v4 (closes chore(deps): bump docker/login-action from 3 to 4 #72)docker/setup-buildx-action: v3 → v4 (closes chore(deps): bump docker/setup-buildx-action from 3 to 4 #70)docker/setup-qemu-action: v3 → v4 (closes chore(deps): bump docker/setup-qemu-action from 3 to 4 #69)Test plan
🤖 Generated with Claude Code