chore: add dependabot configuration for automated dependency updates#2337
Open
just1and0 wants to merge 2 commits into
Open
chore: add dependabot configuration for automated dependency updates#2337just1and0 wants to merge 2 commits into
just1and0 wants to merge 2 commits into
Conversation
Adds dependabot.yml to keep Gradle dependencies and GitHub Actions up to date on a daily schedule with 7-day cooldown. PRs target the dependency-updates branch.
There was a problem hiding this comment.
Code Review
This pull request introduces a .github/dependabot.yml configuration file to automate dependency updates for Gradle and GitHub Actions. The feedback correctly identifies that the cooldown option is not supported by GitHub Dependabot and will cause parsing errors, so it should be removed from both update blocks.
mikehardy
requested changes
Jun 19, 2026
mikehardy
left a comment
Contributor
There was a problem hiding this comment.
apparently some issue with what params are supported in what ecosystems
Comment on lines
+21
to
+23
| semver-major-days: 7 | ||
| semver-minor-days: 7 | ||
| semver-patch-days: 7 |
Contributor
There was a problem hiding this comment.
this appears problematic, I wasn't aware github-actions ecosystem diverged in support for cooldown params, but
The property '#/updates/1/cooldown/semver-major-days' is not supported for the package ecosystem 'github-actions'.
The property '#/updates/1/cooldown/semver-minor-days' is not supported for the package ecosystem 'github-actions'.
The property '#/updates/1/cooldown/semver-patch-days' is not supported for the package ecosystem 'github-actions'.
https://github.com/firebase/FirebaseUI-Android/pull/2337/checks?check_run_id=82360741954
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.
Adds dependabot.yml to keep Gradle dependencies and GitHub Actions up to date on a daily schedule with 7-day cooldown. PRs target the dependency-updates branch.