From bd7ee40675cc043704eb26a981b3b97a1af349a9 Mon Sep 17 00:00:00 2001 From: Dipen Pradhan Date: Sun, 7 Jun 2026 14:37:53 -0700 Subject: [PATCH] ci: add Dependabot config for gradle and github-actions Weekly version bumps + security updates. Compose artifacts are grouped so they move together with the BOM. Gradle coverage becomes complete once the version catalog migration (#189) lands. Refs #215 --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..85e4d294 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +# Dependabot: security updates + routine version bumps. +# The gradle ecosystem uses `directories` (glob) so every module's build file +# is watched — root, buildSrc, each app/data/theme/component/template/demo subproject. +# The github-actions ecosystem watches workflows; directories key does not apply there. +version: 2 +updates: + - package-ecosystem: gradle + directories: + - "/" + - "/**" + schedule: + interval: weekly + open-pull-requests-limit: 5 + groups: + # Compose artifacts must move together with the BOM + compose: + patterns: + - "androidx.compose*" + + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + open-pull-requests-limit: 5 + groups: + actions: + patterns: + - "*"