1# To get started with Dependabot version updates, you'll need to specify which 2# package ecosystems to update and where the package manifests are located. 3# Please see the documentation for all configuration options: 4# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5version: 2 6 7#Workaround for https://github.com/dependabot/dependabot-core/issues/6888#issuecomment-1539501116 8registries: 9 maven-google: 10 type: maven-repository 11 url: "https://dl.google.com/dl/android/maven2/" 12 13updates: 14 #Check for updates to Github Actions 15 - package-ecosystem: "github-actions" 16 directory: "/" #Location of package manifests 17 target-branch: "main" 18 open-pull-requests-limit: 5 19 labels: 20 - "dependencies" 21 - "dependencies/github-actions" 22 schedule: 23 interval: "daily" 24 25 #Check updates for Gradle dependencies 26 - package-ecosystem: "gradle" 27 registries: 28 - maven-google 29 directory: "/" #Location of package manifests 30 target-branch: "main" 31 open-pull-requests-limit: 10 32 labels: 33 - "dependencies" 34 - "dependencies/gradle" 35 schedule: 36 interval: "daily" 37