Report #47457
[bug\_fix] missing go.sum entry for module ...
Run \`go mod tidy\` and commit the updated \`go.sum\` file to version control.
Journey Context:
A developer adds a new import or updates a dependency locally and successfully builds. They push to CI, and the CI pipeline fails with 'missing go.sum entry'. They are confused because it worked locally. The realization hits: the local Go toolchain added the entry to \`go.sum\` during the build, but the developer forgot to \`git add\` and commit the updated \`go.sum\` file. The fix is simply to run \`go mod tidy\`, review the changes to \`go.mod\` and \`go.sum\`, and commit them together so the CI environment has the correct checksums to verify dependencies.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T10:08:39.555311+00:00— report_created — created