mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
## 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/moby@v28.2.1+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](2645703e0f)
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 <1951866+crazy-max@users.noreply.github.com>
24 lines
944 B
Modula-2
24 lines
944 B
Modula-2
module github.com/docker/docs
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/docker/buildx v0.24.0 // indirect
|
|
github.com/docker/cli v28.2.1+incompatible // indirect
|
|
github.com/docker/compose/v2 v2.36.2 // indirect
|
|
github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 // indirect
|
|
github.com/docker/scout-cli v1.15.0 // indirect
|
|
github.com/moby/buildkit v0.22.0 // indirect
|
|
github.com/moby/moby v28.2.1+incompatible // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/docker/buildx => github.com/docker/buildx v0.24.0
|
|
github.com/docker/cli => github.com/docker/cli v28.2.1+incompatible
|
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.36.2
|
|
github.com/docker/model-cli => github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01
|
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
|
|
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0
|
|
github.com/moby/moby => github.com/moby/moby v28.2.1+incompatible
|
|
)
|