chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 87f3d3e#219
Conversation
|
📝 WalkthroughSummary by CodeRabbit
Walkthrough
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Supply chain flag. This is a pseudo-version pinning to a raw commit hash ( Confirm:
🚥 Pre-merge checks | ✅ 11✅ Passed checks (11 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 golangci-lint (2.12.2)level=error msg="Running error: context loading failed: failed to load packages: failed to load packages: failed to load with go/packages: err: exit status 1: stderr: go: updates to go.mod needed, disabled by -mod=readonly; to update it:\n\tgo mod tidy\n" Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @red-hat-konflux-kflux-prd-rh02[bot]. Thanks for your PR. I'm waiting for a openshift-hyperfleet member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
…to 87f3d3e Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com>
d9be8e2 to
e3e3998
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@go.mod`:
- Line 150: The go.mod file has an invalid pseudo-version entry for the module
google.golang.org/genproto/googleapis/rpc. The current entry uses only a bare
commit hash (87f3d3e198d3) instead of the required Go pseudo-version format
(v0.0.0-YYYYMMDDHHMMSS-commithash). To fix this, run the command go get -m
google.golang.org/genproto/googleapis/rpc@87f3d3e198d3 which will automatically
resolve and update the dependency to the correct pseudo-version format with the
proper timestamp for that commit hash.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Central YAML (base), Organization UI (inherited)
Review profile: CHILL
Plan: Enterprise
Run ID: 04fb1953-7805-43fd-a785-095bdf56df3b
📒 Files selected for processing (1)
go.mod
🔗 Linked repositories identified
CodeRabbit considers these linked repositories for cross-repo context during reviews:
openshift-hyperfleet/architecture(manual)openshift-hyperfleet/hyperfleet-api(manual)openshift-hyperfleet/hyperfleet-sentinel(manual)openshift-hyperfleet/hyperfleet-adapter(manual)openshift-hyperfleet/hyperfleet-broker(manual)
| golang.org/x/text v0.35.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect | ||
| google.golang.org/genproto/googleapis/rpc 87f3d3e198d3 // indirect |
There was a problem hiding this comment.
Invalid pseudo-version syntax on google.golang.org/genproto/googleapis/rpc.
Line 150 is missing the required pseudo-version prefix. Go modules demand the format v0.0.0-YYYYMMDDHHMMSS-commithash. The current entry 87f3d3e198d3 is a bare commit hash and will fail go mod operations.
The old version follows the correct format: v0.0.0-20260401024825-9d38bb4040a9. The update must restore this structure with the appropriate timestamp for commit 87f3d3e198d3.
Required fix: Restore pseudo-version prefix
- google.golang.org/genproto/googleapis/rpc 87f3d3e198d3 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-YYYYMMDDHHMMSS-87f3d3e198d3 // indirectReplace YYYYMMDDHHMMSS with the actual commit timestamp for hash 87f3d3e198d3 from the google-genproto repository. Run go get -m google.golang.org/genproto/googleapis/rpc@87f3d3e198d3 to auto-resolve the correct pseudo-version.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@go.mod` at line 150, The go.mod file has an invalid pseudo-version entry for
the module google.golang.org/genproto/googleapis/rpc. The current entry uses
only a bare commit hash (87f3d3e198d3) instead of the required Go pseudo-version
format (v0.0.0-YYYYMMDDHHMMSS-commithash). To fix this, run the command go get
-m google.golang.org/genproto/googleapis/rpc@87f3d3e198d3 which will
automatically resolve and update the dependency to the correct pseudo-version
format with the proper timestamp for that commit hash.
Source: Coding guidelines
This PR contains the following updates:
9d38bb4→87f3d3eWarning
Some dependencies could not be looked up. Check the warning logs for more information.
Configuration
📅 Schedule: Branch creation - "on monday" (UTC), Automerge - At any time (no schedule defined).
🚦 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.