Commit 4678e93
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
3 files changed
+11
-473
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
0 commit comments