Skip to content

Commit 253a241

Browse files
authored
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.
1 parent 33806b8 commit 253a241

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/dependabot.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7-
day: "monday"
8-
time: "12:00"
9-
timezone: "America/New_York"
10-
commit-message:
11-
prefix: "ci(deps)"
7+
labels: ["internal"]
8+
9+
- package-ecosystem: "cargo"
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+
labels: ["internal"]

0 commit comments

Comments
 (0)