ci: ignore unsatisfiable protobuf major updates in dependabot#489
Merged
Conversation
Collaborator
Author
|
独立审查结论:当前 PR 改动合理,未发现阻塞性问题。 审查要点:
剩余注意点:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
最近一次 Dependabot
uv更新任务失败。失败点不在主验证工作流,而在 Dependabot 尝试对protobuf发起 major 升级时触发了解算冲突。根因分析
当前项目依赖仍要求
protobuf < 7,而 Dependabot 在 grouped update 中尝试将protobuf升级到7.x。这会与a2a-sdk的版本约束共同导致依赖不可解,因此更新任务稳定失败。本次改动
.github/dependabot.yml中忽略protobuf的version-update:semver-major审查结论
protobufmajor 更新,不影响 patch / minor 更新,也不扩大其它自动化行为a2a-sdk或项目自身支持protobuf 7后,可以移除该忽略规则验证
bash ./scripts/doctor.sh备注