What
CI fails with 'missing go.sum entry' for all three dependencies (cobra, jsonschema, ini.v1). The go.sum file is not committed to the repository.
Why
go.sum is required for reproducible builds. Without it, go build/go test cannot verify dependency checksums and the CI pipeline is completely blocked.
How
- Run 'go mod tidy' to regenerate go.sum
- Commit go.sum to the repository
- Verify CI passes after the commit
Affected
- CI build step
- All go build and go test invocations
What
CI fails with 'missing go.sum entry' for all three dependencies (cobra, jsonschema, ini.v1). The go.sum file is not committed to the repository.
Why
go.sum is required for reproducible builds. Without it, go build/go test cannot verify dependency checksums and the CI pipeline is completely blocked.
How
Affected