This is an automated email from the ASF dual-hosted git repository.
Jefffrey pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 21f021e50c chore: setup dependabot to do `rust-toolchain` updates
(#10461)
21f021e50c is described below
commit 21f021e50c25a7183083252a099fef1123e62668
Author: Jeffrey Vo <[email protected]>
AuthorDate: Tue Aug 4 08:45:53 2026 +0900
chore: setup dependabot to do `rust-toolchain` updates (#10461)
> apparently dependabot can do this for us
>
> -
https://github.blog/changelog/2025-08-19-dependabot-now-supports-rust-toolchain-updates/
>
> though not sure how useful it may be since theres usually clippy fixes
that accompany this 🤔
>
> worth enabling this so at least there wont be cases of us forgetting
to bump it when a new version drops?
- reference: https://github.com/apache/datafusion/pull/23633
---------
Co-authored-by: Andrew Lamb <[email protected]>
---
.github/dependabot.yml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index cffd44eb2d..aa9240b839 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -34,8 +34,14 @@ updates:
schedule:
interval: "daily"
open-pull-requests-limit: 10
- labels: [auto-dependencies]
+ labels: [auto-dependencies, development-process]
groups:
codeql-actions:
patterns:
- "github/codeql-action/*"
+ - package-ecosystem: "rust-toolchain"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+ day: "friday"
+ labels: [auto-dependencies, development-process]