File tree Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Original file line number Diff line number Diff line change
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
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " github-actions"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " monthly"
12
+ groups :
13
+ workflow-actions :
14
+ patterns :
15
+ - " *"
16
+ allow :
17
+ - dependency-name : " actions/*"
18
+ - dependency-name : " redhat-actions/*"
19
+
20
+ - package-ecosystem : " gradle"
21
+ directory : " /"
22
+ schedule :
23
+ interval : " weekly"
24
+ day : " tuesday"
25
+ open-pull-requests-limit : 20
26
+ groups :
27
+ hibernate :
28
+ patterns :
29
+ - " org.hibernate*"
30
+ vertx :
31
+ patterns :
32
+ - " io.vertx*"
33
+ mutiny :
34
+ patterns :
35
+ - " io.smallrye.reactive*"
36
+ # Testcontainers plus the JDBC driver we need for testing
37
+ testcontainers :
38
+ patterns :
39
+ - " org.testcontainers*"
40
+ - " com.ibm.db2*"
41
+ - " com.microsoft.sqlserver*"
42
+ - " org.postgresql*"
43
+ - " con.ongres.scram*"
44
+ - " com.fasterxml.jackson.core*"
45
+ - " com.mysql*"
46
+ - " org.mariadb.jdbc*"
47
+
48
+ ignore :
49
+ # Only patches for Hibernate ORM and Vert.x
50
+ - dependency-name : " org.hibernate*"
51
+ update-types : ["version-update:semver-major", "version-update:semver-minor"]
52
+ - dependency-name : " io.vertx*"
53
+ update-types : ["version-update:semver-major", "version-update:semver-minor"]
54
+
55
+ # Dockerfiles in tooling/docker/, and database services we use for examples (MySQL and PostgreSQL)
56
+ - package-ecosystem : " docker"
57
+ directory : " /tooling/docker"
58
+ schedule :
59
+ interval : " weekly"
60
+ allow :
61
+ - dependency-type : " all"
You can’t perform that action at this time.
0 commit comments