Add a Dependabot config to maintain GitHub action versions#376
Add a Dependabot config to maintain GitHub action versions#376anishathalye merged 1 commit intoanishathalye:masterfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #376 +/- ##
=======================================
Coverage 85.63% 85.63%
=======================================
Files 20 20
Lines 696 696
=======================================
Hits 596 596
Misses 100 100 ☔ View full report in Codecov by Sentry. |
|
Dependabot simply updates the version. In some cases ( The only time I've seen breakage in the last several years (for the actions I've used) was for caching and artifact actions changes. Importantly, the old versions were being shut down completely and would stop working. Therefore, having Dependabot submit a PR flagging that a new version was available, and seeing the CI job fail in the PR, indicated not only that there was a new version, but triggered investigation to see what was happening. In effect, the PRs for |
|
Sounds good! |
If accepted, Dependabot will scan the repo for GitHub action version updates once per month and submit a single PR for any actions that have received updates.
Since the repo only pins to major versions (like
actions/checkout@v4), this will probably be a small number of PRs per year. Nevertheless, it will help reduce maintenance burden as actions are updated and old versions are deprecated.