Skip to content
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

chore: enable dependabot for java #19212

Merged
merged 2 commits into from
Nov 18, 2024
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
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,29 @@ updates:
google-cloud:
patterns:
- "google-cloud*"

# Don't update these directories
- package-ecosystem: cargo
directory: /integration_tests/feature-store
schedule:
interval: "daily"
ignore:
- dependency-name: "*"

- package-ecosystem: maven
directory: /java
schedule:
interval: "weekly"
open-pull-requests-limit: 5
# Disable auto rebase to reduce cost. Use `@dependabot rebase` manually instead.
rebase-strategy: "disabled"
ignore:
# Do not bump Debezium because we have hacked its source code e.g. #18760
- dependency-name: "io.debezium:*"
update-types:
["version-update:semver-minor", "version-update:semver-major"]
groups:
# Group all dependenies together because Java libraries are quite stable
all:
patterns:
- "*"
Loading