chore: configure daily dependency updates for maven and github actions#593
Merged
alaahong merged 2 commits intoapache:mainfrom Sep 22, 2025
delei:update-dependabot
Merged
chore: configure daily dependency updates for maven and github actions#593alaahong merged 2 commits intoapache:mainfrom delei:update-dependabot
alaahong merged 2 commits intoapache:mainfrom
delei:update-dependabot
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR configures automated dependency updates using GitHub's Dependabot for both Maven and GitHub Actions ecosystems. The configuration sets up daily scanning with conservative update policies that only allow patch-level updates.
- Added Dependabot configuration for Maven dependencies with daily scheduling and restricted to patch updates only
- Added GitHub Actions dependency management with similar conservative update policies
- Configured appropriate labeling and pull request limits for both ecosystems
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Comment on lines
+21
to
+26
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: [ "version-update:semver-major", "version-update:semver-minor" ] | ||
| labels: | ||
| - "dependencies" | ||
| - "github actions" |
There was a problem hiding this comment.
The github-actions ecosystem configuration is missing the target-branch and open-pull-requests-limit settings that are present in the maven configuration. For consistency and to match the PR description, these should be added to maintain the same behavior across both ecosystems.
alaahong
approved these changes
Sep 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose of the pull request
configure daily dependency updates for maven and github actions
What's changed?
Checklist