From ea0a53ad5449c98d88cc992c041c8ded047fcbc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kozak?= Date: Fri, 10 Apr 2026 12:04:07 +0200 Subject: [PATCH] Configure Dependabot for Gradle with daily updates Updated Dependabot configuration to use Gradle and changed update schedule to daily. --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1acaf16 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: gradle + directory: / + schedule: + interval: daily + groups: + kotlin: + patterns: + - "org.jetbrains.kotlin*" + - "io.gitlab.arturbosch.detekt"