41 lines
911 B
YAML
41 lines
911 B
YAML
# Configuration options:
|
|
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#about-the-dependabotyml-file
|
|
|
|
version: 2
|
|
|
|
updates:
|
|
- package-ecosystem: "gradle"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
registries:
|
|
- google
|
|
- jitpack
|
|
- maven-central
|
|
open-pull-requests-limit: 10
|
|
groups:
|
|
ivy-wallet:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
registries:
|
|
google:
|
|
type: maven-repository
|
|
url: "https://maven.google.com/"
|
|
jitpack:
|
|
type: maven-repository
|
|
url: "https://jitpack.io/"
|
|
maven-central:
|
|
type: maven-repository
|
|
url: "https://repo.maven.apache.org/maven2"
|