fix(deps): update all dependencies - #1791
Merged
Merged
Conversation
red-hat-konflux
Bot
force-pushed
the
konflux/mintmaker/master/all
branch
24 times, most recently
from
July 2, 2026 05:22
911ac8f to
f8b995e
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
red-hat-konflux
Bot
force-pushed
the
konflux/mintmaker/master/all
branch
5 times, most recently
from
July 3, 2026 09:16
3294628 to
068352a
Compare
red-hat-konflux
Bot
force-pushed
the
konflux/mintmaker/master/all
branch
17 times, most recently
from
July 10, 2026 13:15
34fed82 to
3442808
Compare
Contributor
Author
|
red-hat-konflux
Bot
force-pushed
the
konflux/mintmaker/master/all
branch
5 times, most recently
from
July 11, 2026 10:36
278a903 to
78209e4
Compare
Contributor
|
/retest |
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Fixes three issues introduced in commit 9bcf38c that broke CI lint checks: 1. Invalid .golangci.yml configuration format: - Added version: "2" required by golangci-lint v2 (CI uses v2.13.2) - Removed invalid `formatters` section (not supported in golangci-lint v2) - Fixed `linters.settings` → `linters-settings` - Moved gofmt/goimports to linters.enable (v2 treats them as linters) - Removed output.formats section (optional and was causing errors) 2. Invalid cel-go module version: - Commit 9bcf38c specified github.com/google/cel-go@v0.32.0 - This version doesn't exist at that path (moved to cel.dev/cel-go) - Caused module path mismatch errors - Downgraded to v0.29.0 which uses the old import path 3. Missing go.sum entries: - Commit 9bcf38c updated go.mod but didn't regenerate go.sum - Ran \`go mod tidy\` to properly regenerate checksums These changes allow golangci-lint v2 to run successfully in CI. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
The Renovate-generated go.mod had several dependency conflicts: 1. cel-go v0.32.0 at github.com/google/cel-go path doesn't exist (moved to cel.dev/cel-go) — caused go mod download failures 2. automemlimit v1.0.0 removed SetGoMemLimitWithOpts (renamed to Set), breaking caddy v2.11.4 which calls the old API 3. cel-go v0.29.0 changed NewCall to take []InterpretableV2 instead of []Interpretable, breaking caddy v2.11.4 4. cluster-api v1.14.0 uses a local replace for its /api submodule that doesn't resolve as a transitive dependency 5. k8s.io/api version must stay at v0.35.6 to match pinned client-go 6. Duplicate entries and missing go.sum Fixed with exclude directives for incompatible versions, replace directives for k8s.io packages and cluster-api/api, and go mod tidy to regenerate a consistent go.sum. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
|
/test-e2e |
bsquizz
approved these changes
Aug 31, 2026
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
.golangci.ymlto use valid golangci-lint v2 configuration formatDependency conflict fixes
The Renovate-generated
go.modhad several issues that broke the build:github.com/google/cel-go v0.32.0— this version was published under a new module path (cel.dev/cel-go), so Go couldn't resolve it at the old path. Excludedv0.29.0(which has breaking API changes for caddy) to resolve tov0.28.1.github.com/KimMachineGun/automemlimit v1.0.0— renamedSetGoMemLimitWithOptstoSet, breakingcaddy/v2@v2.11.4. Excludedv1.0.0to resolve tov0.7.5.sigs.k8s.io/cluster-api/api— upstream uses a local-pathreplacedirective that doesn't work as a transitive dependency. Added an explicit replace pointing to the publishedapi/v1.14.0sub-module.k8s.io/apiversion drift — MVS bumpedk8s.io/apitov0.36.3, which removed packages (autoscaling/v2beta1,scheduling/v1alpha1) still imported by the pinnedclient-go@v0.35.6. Added replace directives to keep all k8s.io packages atv0.35.6.Duplicate entries in
go.mod—cespare/xxhash/v2,dgraph-io/badger/v4,go-jose/go-jose/v4, andgo.yaml.in/yaml/v3each appeared twice.Missing
go.sumentries — original commit updatedgo.modbut didn't regeneratego.sum..golangci.ymlfixesUpdated to valid golangci-lint v2 format:
version: "2"(required by v2)gofmt/goimportsunderformatters.enable(v2 treats them as formatters, not linters)staticchecksettings underlinters.settings(not top-levellinters-settings)output.formats.textsectionTest plan
go build ./...compiles successfully🤖 Generated with Claude Code