ci: add Dependabot config for npm + github-actions (SRE-4315)#109
Open
kevinpinscoe wants to merge 1 commit intomainfrom
Open
ci: add Dependabot config for npm + github-actions (SRE-4315)#109kevinpinscoe wants to merge 1 commit intomainfrom
kevinpinscoe wants to merge 1 commit intomainfrom
Conversation
Adds .github/dependabot.yaml so Dependabot opens version-update PRs for the three npm subpackages (github-release-download, set-environment-variables, setup-terraform) and for the github-actions used in workflows. The repo previously had no Dependabot config, which is why 15 undici security alerts (6 HIGH severity) have been silently piling up with no PR proposed. This change does NOT close the existing undici alerts — the fix needs a @actions/http-client 2.x → 4.x bump in all three subpackages, tracked in SRE-4355. Going forward, Dependabot will automatically propose: - npm patch/minor updates weekly (grouped by @actions/* and @types/*) - npm major updates weekly with a 30-day cooldown - github-actions updates weekly Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Adds
.github/dependabot.yamlso Dependabot opens version-update PRs for the three npm subpackages and for the github-actions used in workflows. The repo previously had no Dependabot config — only security scanning was active, which is why 15 undici security alerts (6 HIGH severity, CVSS 7.5) have been piling up with no PR proposed.Why now
This config doesn't fix today's undici alerts (those need a major bump of
@actions/http-client, tracked separately in SRE-4355). It does prevent new dependency drift from going invisible.What this enables
Cooldowns: 3d patch / 7d minor / 30d major / 5d default.
Test plan
🤖 Generated with Claude Code