Skip to content

Commit 9635a35

Browse files
authored
Manage Gradle Enterprise plugins with Dependabot (#5342)
* Add dependabot configuration to monitor Gradle plugins * Restrict registries to Gradle Plugin Portal
1 parent 9660137 commit 9635a35

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
version: 2
2+
registries:
3+
gradle-plugin-portal:
4+
type: maven-repository
5+
url: https://plugins.gradle.org/m2
6+
username: dummy # Required by dependabot
7+
password: dummy # Required by dependabot
28
updates:
39
- package-ecosystem: "gradle"
410
directory: "/core"
511
schedule:
612
interval: "monthly"
713
open-pull-requests-limit: 10
14+
- package-ecosystem: "gradle"
15+
directory: "/"
16+
allow:
17+
- dependency-name: "com.gradle*"
18+
registries:
19+
- gradle-plugin-portal
20+
schedule:
21+
interval: "monthly"
22+
open-pull-requests-limit: 10
823

924
# Explicit entry for each module
1025
- package-ecosystem: "gradle"

0 commit comments

Comments
 (0)