Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit a7cd1cd4 authored by Ricki Hirner's avatar Ricki Hirner Committed by GitHub
Browse files

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
parent 0cc84dfd
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -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"
 No newline at end of file