From 253a241f5d47f599a2e3f88dcbcde8d52cbcc2cc Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 1 Sep 2023 09:47:40 -0500 Subject: [PATCH] Add dependabot for `cargo` dependencies (#7034) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .github/dependabot.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 67412d272c78f..eea20ebbe8620 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,10 @@ updates: directory: "/" schedule: interval: "weekly" - day: "monday" - time: "12:00" - timezone: "America/New_York" - commit-message: - prefix: "ci(deps)" + labels: ["internal"] + + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" + labels: ["internal"]