chore: add SECURITY.md and Dependabot config#7
Merged
Conversation
- SECURITY.md: directs reporters to GitHub private vulnerability reporting (preferred) with security@benedoc.co as a fallback. Documents supported versions (v2.x supported, v1.x unsupported) and coordinated disclosure expectations. - .github/dependabot.yml: weekly updates for the github-actions ecosystem (max 5 open PRs). Skips gomod since the library is zero-dependency by design; add that block if/when Go deps appear. 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.
What
SECURITY.md— security policy with reporting paths (GitHub private vulnerability reporting as primary, security@benedoc.co as fallback), supported-versions table, and disclosure norms..github/dependabot.yml— weekly updates for thegithub-actionsecosystem, capped at 5 open PRs.Why
Repo governance niceties to round out the legitimacy work from earlier this session (CI in #4, branch protection on
main, secret scanning + push protection, Dependabot security updates, private vulnerability reporting all enabled).Notes
Dependabot is scoped to
github-actionsonly. The library is zero-dependency by design (norequireblock ingo.mod), so configuring thegomodecosystem would do literally nothing today. If/when Go deps appear, add the block then — it's a one-line change.The CI workflow currently uses
actions/checkout@v4andactions/setup-go@v5; both surfaced Node.js 20 deprecation warnings in the last CI run, so Dependabot will pick up the v5/v6 upgrade PRs once they ship.Test plan
yqequivalent — schema matches Dependabot v2 reference)🤖 Generated with Claude Code