Skip to content
Closed
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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ require (
cel.dev/expr v0.25.1 // indirect
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
github.com/moby/moby/api v1.54.1 // indirect
github.com/moby/moby/client v0.4.0 // indirect
github.com/moby/moby/client v0.4.1 // indirect
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | πŸ”΄ Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== go.mod / go.sum moby client versions =="
fd -a 'go\.(mod|sum)$' | while read -r f; do
  echo "-- $f"
  rg -n 'github.com/moby/moby/client' "$f" || true
done

echo
echo "== references to Docker client imports in this repo =="
rg -n --type=go '"github.com/docker/docker/client"|github.com/moby/moby/client' -g '!**/vendor/**' || true

Repository: openshift-hyperfleet/hyperfleet-sentinel

Length of output: 473


Update go.sum to reflect the moby client version bump to v0.4.1.

The go.mod on line 29 declares github.com/moby/moby/client v0.4.1, but go.sum still contains entries for v0.4.0 (lines 174–175). This lockfile inconsistency will cause module operations to fail or downgrade the version unintentionally. Run go mod tidy to synchronize go.sum before merge.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@go.mod` at line 29, The go.mod declares github.com/moby/moby/client v0.4.1
but go.sum still lists v0.4.0, causing a lockfile mismatch; run `go mod tidy` in
the module root (or otherwise regenerate the lockfile) so go.sum is updated to
include entries for github.com/moby/moby/client v0.4.1 and remove/replace the
v0.4.0 entries, then verify that go.sum no longer contains lines referencing
v0.4.0.

go.opentelemetry.io/contrib/propagators/aws v1.43.0 // indirect
go.opentelemetry.io/contrib/propagators/b3 v1.43.0 // indirect
go.opentelemetry.io/contrib/propagators/jaeger v1.43.0 // indirect
Expand Down