{{ message }}
fix: use >= version constraints for action deps to enable Dependabot updates#419
Closed
Copilot wants to merge 2 commits into
Closed
fix: use >= version constraints for action deps to enable Dependabot updates#419Copilot wants to merge 2 commits into
>= version constraints for action deps to enable Dependabot updates#419Copilot wants to merge 2 commits into
Conversation
…mp cpp-linter to 1.12.1 Agent-Logs-Url: https://github.com/cpp-linter/cpp-linter-action/sessions/b460992a-13de-459d-beaf-8758cb4812f7 Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix issue with dependency update not triggering
fix: use Apr 3, 2026
>= version constraints for action deps to enable Dependabot updates
Contributor
Collaborator
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.

cpp-linterandclang-toolswere pinned with exact==constraints in theactiondependency group, causing Dependabot to report "No update possible" —uv lock --upgrade-packagecannot change the lockfile when the specifier only allows one exact version.Changes
pyproject.toml: Changeactiongroup deps from exact (==) to minimum-version (>=) constraints, consistent withdev/docsgroups. The lockfile still pins the runtime version precisely.uv.lock: Regenerated withuv lock --upgrade-package cpp-linter, bumpingcpp-linterto1.12.1for Python ≥ 3.10 (stays at1.12.0for Python < 3.10, as1.12.1transitively requirespygit2 ≥ 1.19.2which dropped 3.9 support).