From 735b76386ad1e1cab2cfae8a3192943dac0ef168 Mon Sep 17 00:00:00 2001 From: Ashu Date: Mon, 3 Aug 2026 10:45:34 +0530 Subject: [PATCH] infra: add Dependabot for Gradle and GitHub Actions --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..bc80c32 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 +updates: + - package-ecosystem: gradle + directory: "/" + schedule: + interval: weekly + groups: + # collapse routine minor/patch bumps into ONE PR; majors stay + # individual so a risky bump gets its own scrutiny (a major bump of + # the IntelliJ Platform Gradle Plugin can change task names and DSL + # shapes, and deserves its own review). + gradle-minor-patch: + update-types: + - minor + - patch + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + groups: + actions-minor-patch: + update-types: + - minor + - patch