Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ require (
codeberg.org/mvdkleijn/forgejo-sdk/forgejo/v3 v3.0.0
github.com/konflux-ci/application-api v0.0.0-20260603073049-dd8c9b1a64c2
github.com/konflux-ci/coverport/instrumentation/go v0.0.0-20251127115143-b5207b335f8b
github.com/konflux-ci/image-controller v0.0.0-20241128141349-9986c9955e05
github.com/konflux-ci/operator-toolkit v0.0.0-20251118152634-b4f41f073069
github.com/konflux-ci/image-controller v0.0.0-20260630090021-17b36a2806d5
github.com/konflux-ci/operator-toolkit v0.0.0-20260312101100-d4e398191a68

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[low] incomplete change

The PR updates dependency versions in go.mod but does not include corresponding updates to go.sum or vendor/. The repository's renovate.json configures postUpdateOptions with gomodTidy and gomodVendor, so Renovate should handle these automatically. If the post-update commands failed to run, CI (hermetic builds with Cachi2 gomod prefetch) would catch the inconsistency before merge.

Suggested fix: Verify CI passes. If go.sum or vendor/ inconsistency is reported, run go mod tidy && go mod vendor and push the changes.

github.com/konflux-ci/release-service v0.0.0-20260130155849-48535a3e5ace
github.com/onsi/ginkgo/v2 v2.28.3
github.com/onsi/gomega v1.40.0
github.com/openshift-pipelines/pipelines-as-code v0.34.0
k8s.io/api v0.35.3
k8s.io/apimachinery v0.35.3
k8s.io/client-go v11.0.0+incompatible
knative.dev/pkg v0.0.0-20250424013628-d5e74d29daa3
knative.dev/pkg v0.0.0-20260622140654-39ebae2ee2dc
sigs.k8s.io/controller-runtime v0.22.4
)

Expand All @@ -30,7 +30,7 @@ replace (
k8s.io/client-go => k8s.io/client-go v0.35.3
k8s.io/component-base => k8s.io/component-base v0.35.3

knative.dev/pkg => knative.dev/pkg v0.0.0-20240416145024-0f34a8815650
knative.dev/pkg => knative.dev/pkg v0.0.0-20260622140654-39ebae2ee2dc
)

require (
Expand All @@ -55,7 +55,7 @@ require (
go.uber.org/zap v1.27.1
golang.org/x/oauth2 v0.36.0
k8s.io/klog/v2 v2.130.1
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
k8s.io/utils v0.0.0-20260626114624-be93311217bd
sigs.k8s.io/yaml v1.6.0
)

Expand Down Expand Up @@ -118,7 +118,7 @@ require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/go-github/v75 v75.0.0 // indirect
github.com/google/go-querystring v1.2.0 // indirect
github.com/google/pprof v0.0.0-20260402051712-545e8a4df936 // indirect
github.com/google/pprof v0.0.0-20260604005048-7023385849c0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
Expand Down Expand Up @@ -162,7 +162,7 @@ require (
go.yaml.in/yaml/v2 v2.4.4 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect
golang.org/x/exp v0.0.0-20260611194520-c48552f49976 // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/net v0.53.0 // indirect
golang.org/x/sync v0.20.0 // indirect
Expand All @@ -173,8 +173,8 @@ require (
golang.org/x/tools v0.44.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
google.golang.org/api v0.264.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260630182238-925bb5da69e7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260630182238-925bb5da69e7 // indirect
google.golang.org/grpc v1.78.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
Expand All @@ -184,7 +184,7 @@ require (
k8s.io/apiextensions-apiserver v0.35.3 // indirect
k8s.io/apiserver v0.35.3 // indirect
k8s.io/component-base v0.35.3 // indirect
k8s.io/kube-openapi v0.0.0-20260127142750-a19766b6e2d4 // indirect
k8s.io/kube-openapi v0.0.0-20260624041617-8f3fa4921821 // indirect
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.34.0 // indirect
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
sigs.k8s.io/randfill v1.0.0 // indirect
Expand Down
Loading