Skip to content

Commit a1d6e7e

Browse files
committed
[#1136] Update dependabot configuration
Includes: * Update project dependencies * Update images in Dockerfile files under tooling/docker/ * Update images we use as services in the GitHub workflow (mysql and postgres to test the examples)
1 parent 71d60d1 commit a1d6e7e

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/dependabot.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,46 @@ updates:
1616
allow:
1717
- dependency-name: "actions/*"
1818
- 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"

0 commit comments

Comments
 (0)