Skip to content

Update dependabot configuration #2344

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,48 @@ updates:
allow:
- dependency-name: "actions/*"
- dependency-name: "redhat-actions/*"

- package-ecosystem: "gradle"
directory: "/"
registries:
- gradle-plugin-portal
schedule:
interval: "weekly"
day: "tuesday"
open-pull-requests-limit: 20
groups:
hibernate:
patterns:
- "org.hibernate*"
vertx:
patterns:
- "io.vertx*"
mutiny:
patterns:
- "io.smallrye.reactive*"
# Testcontainers plus the JDBC driver we need for testing
testcontainers:
patterns:
- "org.testcontainers*"
- "com.ibm.db2*"
- "com.microsoft.sqlserver*"
- "org.postgresql*"
- "con.ongres.scram*"
- "com.fasterxml.jackson.core*"
- "com.mysql*"
- "org.mariadb.jdbc*"

ignore:
# Only patches for Hibernate ORM and Vert.x
- dependency-name: "org.hibernate*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "io.vertx*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]

# Dockerfiles in tooling/docker/, and database services we use for examples (MySQL and PostgreSQL)
- package-ecosystem: "docker"
directory: "/tooling/docker"
schedule:
interval: "weekly"
allow:
- dependency-type: "all"
Loading