Skip to content

Commit 0558f08

Browse files
Patel230claude
andcommitted
fix(ci): resolve siblings via go.work replace (not use) + require yaad
The 'use ./external/*' workspace form still verified each required sibling version against the frozen public proxy/sumdb, causing 'checksum mismatch / SECURITY ERROR' on vet and module-hygiene (local HEAD != frozen v0.1.0 tag). Switch go.work to 'use .' + explicit 'replace => ./external/<repo>' for all six siblings — replace fully bypasses proxy verification (matching the sibling repos). Add the missing 'require yaad v0.1.0' (replace needs a matching require; yaad is imported in 136 files). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent c305a88 commit 0558f08

3 files changed

Lines changed: 124 additions & 8 deletions

File tree

go.mod

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.work

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
go 1.26.4
22

3-
use (
4-
.
5-
./external/eyrie
6-
./external/inspect
7-
./external/sight
8-
./external/tok
9-
./external/trace
10-
./external/yaad
3+
use .
4+
5+
replace (
6+
github.com/GrayCodeAI/eyrie => ./external/eyrie
7+
github.com/GrayCodeAI/inspect => ./external/inspect
8+
github.com/GrayCodeAI/sight => ./external/sight
9+
github.com/GrayCodeAI/tok => ./external/tok
10+
github.com/GrayCodeAI/trace => ./external/trace
11+
github.com/GrayCodeAI/yaad => ./external/yaad
1112
)

0 commit comments

Comments
 (0)