Run Renovate for dependency updates - #1223
Open
JeroenDeDauw wants to merge 2 commits into
Open
Conversation
Supersedes #1221 Adds a nightly Renovate run and its configuration, modelled on the one DockerWiki uses. Nothing proposes dependency updates here today: Dependabot version updates are off, and its security updates only fire once an advisory lands. The configuration keeps the pull request volume low. npm and composer minor and patch updates each roll into one grouped pull request, GitHub Actions get their own, and majors go to the dependency dashboard instead of straight to a pull request. Image tags in the dev stack are treated that way from minor upwards, because they choose the PHP, database and Node versions development and CI run on. `:maintainLockFilesWeekly` regenerates the npm lock files every Monday. That is what moves nested transitive packages, the drift behind the brace-expansion and js-yaml alerts. Needs `RENOVATE_TOKEN_PROWIKIEXPERTS` to be readable from this repository. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
config:recommended extends :ignoreModulesAndTests, whose ignorePaths include **/tests/**. That excluded tests/RedHerb/package.json and its lock file, so the npm group did not cover RedHerb despite saying it does, and :maintainLockFilesWeekly would never regenerate tests/RedHerb/package-lock.json — half of what the superseded #1221 did, and half of the transitive drift behind the brace-expansion and js-yaml alerts. Dropping the preset restores Renovate's default ignorePaths (node_modules and bower_components). Verified against Renovate 44.5.0: the npm manager goes from two package files to three, both lock files are registered, and the composer, Dockerfile, compose and workflow coverage and the resulting branch set are unchanged. Co-Authored-By: Claude Opus 5 (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.
Supersedes #1221
Adds a nightly Renovate run and its configuration, modelled on the one DockerWiki uses. Nothing proposes dependency
updates here today: Dependabot version updates are off, and its security updates only fire once an advisory lands.
The configuration keeps the pull request volume low. npm and composer minor and patch updates each roll into one
grouped pull request, GitHub Actions get their own, and majors go to the dependency dashboard instead of straight to a
pull request. Image tags in the dev stack are treated that way from minor upwards, because they choose the PHP,
database and Node versions development and CI run on.
:maintainLockFilesWeeklyregenerates the npm lock files every Monday. That is what moves nested transitive packages,the drift behind the brace-expansion and js-yaml alerts.
Needs
RENOVATE_TOKEN_PROWIKIEXPERTSto be readable from this repository. The workflow is otherwise the one DockerWikiruns, on the current action release.