Add dependabot configuration to monitor Gradle plugins (#5974)
* Add dependabot configuration to monitor Gradle plugins * Freeze markdown-link-check-version (#5975) Co-authored-by: Mateusz Rzeszutek <mrzeszutek@splunk.com>
This commit is contained in:
parent
9828aa5e12
commit
b0482cae57
|
@ -1,6 +1,20 @@
|
||||||
version: 2
|
version: 2
|
||||||
|
registries:
|
||||||
|
gradle-plugin-portal:
|
||||||
|
type: maven-repository
|
||||||
|
url: https://plugins.gradle.org/m2
|
||||||
|
username: dummy # Required by dependabot
|
||||||
|
password: dummy # Required by dependabot
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
- package-ecosystem: "gradle"
|
||||||
|
directory: "/"
|
||||||
|
allow:
|
||||||
|
- dependency-name: "com.gradle*"
|
||||||
|
registries:
|
||||||
|
- gradle-plugin-portal
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
|
Loading…
Reference in New Issue