mirror of https://github.com/astral-sh/ruff
Add dependabot for `cargo` dependencies (#7034)
Ideally we shouldn't have to run `cargo update` manually — it requires us to remember to do so and groups all updates into a single pull request making it challenging to determine which upgrade introduces regressions e.g. #6964. Here we add daily checks for cargo dependency updates. This pull request also simplifies dependabot configuration for GitHub Actions versions.
This commit is contained in:
parent
33806b8b7c
commit
253a241f5d
|
|
@ -4,8 +4,10 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
day: "monday"
|
labels: ["internal"]
|
||||||
time: "12:00"
|
|
||||||
timezone: "America/New_York"
|
- package-ecosystem: "cargo"
|
||||||
commit-message:
|
directory: "/"
|
||||||
prefix: "ci(deps)"
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
labels: ["internal"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue