From 9ee62346d0b9cec6b153ae8384f64f06cb3dfe82 Mon Sep 17 00:00:00 2001 From: Robert Schlabbach Date: Sun, 7 Dec 2025 13:23:17 +0100 Subject: [PATCH] Add Gradle to dependabot configuration Dependabot was only creating PRs to update the Maven pom.xml files with new dependency versions, while the Gradle build.gradle files had to be updated manually, which was often missed, leaving the Gradle build out of sync. Add gradle to the dependabot configuration so that it creates PRs to update the Gradle build.gradle files as well. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f358def6..841d3b13 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,11 @@ updates: schedule: interval: "daily" + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" directory: "/" schedule: