[Dependabot] Cover /src/proguard-android in gradle updates#11710
Open
jonathanpeppers wants to merge 1 commit into
Open
[Dependabot] Cover /src/proguard-android in gradle updates#11710jonathanpeppers wants to merge 1 commit into
jonathanpeppers wants to merge 1 commit into
Conversation
The proguard-android build.gradle pins com.android.application at 8.7.0 but wasn't listed in .github/dependabot.yml, so Dependabot never opened PRs for it. Consolidate the three gradle entries into a single block using the 'directories' (plural) key. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Dependabot configuration so Gradle dependencies under src/proguard-android/ are included in weekly update checks, ensuring Android Gradle Plugin pins in that directory can be updated automatically.
Changes:
- Add
/src/proguard-androidto the Gradle Dependabot coverage. - Consolidate multiple Gradle update entries into a single
package-ecosystem: "gradle"block usingdirectories:.
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.
Dependabot wasn't opening PRs to update the
com.android.applicationGradle plugin (pinned at8.7.0insrc/proguard-android/build.gradle) because that directory wasn't listed in.github/dependabot.yml. The gradle ecosystem doesn't auto-discoverbuild.gradlefiles; each directory has to be enumerated.This adds
/src/proguard-androidto the gradle coverage and consolidates the three previously separate gradle entries into a single block using thedirectories:(plural) key. Dependabot still opens one PR per(directory, dependency)pair -- this is not batching, just config consolidation.Test fixtures under
tests/CodeGen-Binding/.../JavaLib/build.gradleare intentionally left out; they pin old versions on purpose for binding tests.