chore(deps): update github.com/planetscale/vtprotobuf digest to 8ae5a48 - #136
Conversation
|
🤖 Finished Review · ✅ Success · Started 9:18 PM UTC · Completed 9:21 PM UTC |
ReviewFindingsCritical
Next steps:
Previous runReview of PR #136 —
|
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
ebf6e29 to
32c44f4
Compare
|
|
🤖 Finished Review · ✅ Success · Started 4:53 PM UTC · Completed 5:01 PM UTC |
| github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
| github.com/planetscale/vtprotobuf 8ae5a48058df // indirect |
There was a problem hiding this comment.
[critical] dependency-version-format
The go.mod entry for github.com/planetscale/vtprotobuf uses a bare commit hash (8ae5a48058df) instead of a valid Go module version. Go modules require all versions to follow semver (vX.Y.Z) or the pseudo-version format (vX.Y.Z-YYYYMMDDHHMMSS-abcdefabcdef). The bare hash is not parseable by any Go tooling and will cause immediate build failures: go mod tidy, go build, and go test will all error out with a version-parsing failure.
Suggested fix: Run go get github.com/planetscale/vtprotobuf@8ae5a48058df to let Go resolve the commit hash into a proper pseudo-version string, then commit the corrected go.mod and go.sum. Alternatively, run go mod tidy which will also fix the format.
This PR contains the following updates:
0393e58→8ae5a48Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.