Skip to content

Commit 4678e93

Browse files
authored
fix go modules (#22752)
## Description Go mod is currently in broken state: ``` # get https://proxy.golang.org/github.com/docker/cli/@v/v28.2.1+incompatible.zip # get https://proxy.golang.org/github.com/moby/moby/@v/v28.2.1+incompatible.zip: 200 OK (0.042s) # get https://proxy.golang.org/github.com/docker/cli/@v/v28.2.1+incompatible.zip: 200 OK (0.128s) verifying github.com/moby/[email protected]+incompatible: checksum mismatch downloaded: h1:UYmHExYP8S0uGKDozhYw7RJ+LpANL51g4fa3qT0Q2GA= go.sum: h1:UYmHExYP8S0uGKDozhYw7RJ+LpANL51g4fa3qT0Q2GA=+ SECURITY ERROR This download does NOT match an earlier download recorded in go.sum. The bits may have been replaced on the origin server, or an attacker may have intercepted the download attempt. For more information, see 'go help module-auth'. ``` Seems related to this merge commit: [f328984](2645703) Fixed it by rebuilding the `go.sum` with: ``` rm -f go.sum && make vendor ``` ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review Signed-off-by: CrazyMax <[email protected]>
1 parent 62d2509 commit 4678e93

File tree

3 files changed

+11
-473
lines changed

3 files changed

+11
-473
lines changed

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# github.com/docker/buildx v0.24.0
44
# github.com/docker/cli v28.2.1+incompatible
55
# github.com/docker/compose/v2 v2.36.2
6-
# github.com/docker/model-cli v0.1.25
6+
# github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01
77
# github.com/docker/scout-cli v1.15.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/docker/buildx v0.24.0 // indirect
77
github.com/docker/cli v28.2.1+incompatible // indirect
88
github.com/docker/compose/v2 v2.36.2 // indirect
9-
github.com/docker/model-cli v0.1.25 // indirect
9+
github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 // indirect
1010
github.com/docker/scout-cli v1.15.0 // indirect
1111
github.com/moby/buildkit v0.22.0 // indirect
1212
github.com/moby/moby v28.2.1+incompatible // indirect

0 commit comments

Comments
 (0)