-
Notifications
You must be signed in to change notification settings - Fork 22
Labels
enhancementNew feature or requestNew feature or request
Description
Describe the behavior you would like
Right now, dependency updates using uv are scheduled daily, which feels too frequent for the dev
and docs
groups.
For the action
group, checking for new releases daily makes sense, but for dev
and docs
, a quarterly update schedule should be sufficient.
I am not sure if we can split the dependency groups into separate manifest files that Dependabot can target independently
cpp-linter-action/pyproject.toml
Lines 7 to 24 in b514e55
[dependency-groups] | |
action = [ | |
"clang-tools==0.15.3", | |
"cpp-linter==1.10.7", | |
] | |
dev = [ | |
"mypy>=1.17.1", | |
"pre-commit>=4.3.0", | |
"ruff>=0.12.8", | |
] | |
docs = [ | |
"markdown-gfm-admonition>=0.1.1", | |
"mkdocs>=1.6.1", | |
"mkdocs-gen-files>=0.5.0", | |
"mkdocs-include-markdown-plugin>=7.1.6", | |
"mkdocs-material>=9.6.16", | |
"pyyaml>=6.0.2", | |
] |
cpp-linter-action/.github/dependabot.yml
Lines 16 to 23 in b514e55
- package-ecosystem: uv | |
directory: / | |
schedule: | |
interval: "daily" | |
groups: | |
pip: | |
patterns: | |
- '*' |
Copilot
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request