Add Renovate dependency automation#95
Open
mariusvniekerk wants to merge 2 commits into
Open
Conversation
This docs site did not have dependency automation, so package updates and security alerts depended on manual attention. Adding Renovate brings it in line with the middleman repository's conservative update policy while adapting the JavaScript manager to this npm-based Astro site. The configuration keeps routine dependency PRs behind release-age checks, but lets vulnerability fixes bypass that delay so security updates are not unnecessarily held back. It also tracks the Mermaid CDN import in astro.config.mjs, which would otherwise sit outside package-lock based updates. Validation: jq . renovate.json; npx --yes --package renovate renovate-config-validator renovate.json 🤖 Generated with Codex Co-authored-by: Codex <codex@openai.com>
|
@mariusvniekerk is attempting to deploy a commit to the Kenn Software Team on Vercel. A member of the Team first needs to authorize it. |
roborev: Combined Review (
|
The docs site should use Renovate without depending on GitHub's Dependabot-backed vulnerability alert feed. Keeping that integration active would preserve the Dependabot coupling the Renovate migration is meant to remove. OSV vulnerability alerts remain enabled so Renovate can still use its own vulnerability source without requiring the GitHub alert integration. Validation: jq . renovate.json; npx --yes --package renovate renovate-config-validator renovate.json 🤖 Generated with Codex Co-authored-by: Codex <codex@openai.com>
roborev: Combined Review (
|
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.
This docs site did not have dependency automation, so package updates relied on manual follow-up. The middleman repository already uses Renovate with conservative release-age checks; this PR brings the docs site under the same maintenance model while removing the GitHub/Dependabot vulnerability-alert coupling.
The config is adapted for this repo instead of copied verbatim: this is an npm/package-lock based Astro site, so JavaScript dependency grouping targets Renovate's npm manager. The Mermaid CDN import in
astro.config.mjsis also covered with a regex manager so it does not drift outside normal dependency review. Renovate's GitHubvulnerabilityAlertsintegration is explicitly disabled, while OSV alerts remain enabled.Validation:
jq . renovate.jsonnpx --yes --package renovate renovate-config-validator renovate.json