Configure Dependabot for Gradle dependencies (#1680)

* Configure Dependabot for Gradle dependencies

Add Gradle dependency management configuration to Dependabot.

* Update dependabot.yml to ignore specific Kotlin and KSP dependencies
This commit is contained in:
Ricki Hirner
2025-09-05 09:26:30 +02:00
committed by GitHub
parent 0cc84dfd01
commit a7cd1cd49f

View File

@@ -12,3 +12,17 @@ updates:
groups:
ci-actions:
patterns: ["*"]
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
groups:
lib-dependencies:
patterns: ["*"]
ignore:
# kotlin and ksp must be aligned and should only be updated together and manually
- dependency-name: "org.jetbrains.kotlin:kotlin-stdlib"
- dependency-name: "org.jetbrains.kotlin.plugin.compose"
- dependency-name: "org.jetbrains.kotlin.android"
- dependency-name: "com.google.devtools.ksp"