Renovate doesn't update any composer package #8154
-
Hi there, I set up renovate with a friend a few weeks ago in a self hosted environment. We've configured a pipeline to run every week in GitlabCI and the dockerfile / docker-compose managers work like a charm but for some reason I can't get the composer manager to work 🤔 As you can see when I run
But unfortunately when I run renovate nothing happens :( Here is how i ran renovate : node /usr/src/app/dist/renovate.js
--platform "gitlab"
--endpoint "${CI_API_V4_URL}"
--git-author "${RENOVATE_GIT_AUTHOR}"
--dry-run "${RENOVATE_DRY_RUN}"
--log-level "${RENOVATE_LOG_LEVEL}"
"${CI_PROJECT_PATH}" Here is my renovate config : {
"extends": [
"group:allNonMajor"
],
"enabledManagers": ["composer", "docker-compose", "dockerfile"],
"major": {
"enabled": false
},
"ignoreScripts": true,
"composerIgnorePlatformReqs": true
} Here are the debug logs : If anyone could point me out what's wrong that would be really awesome 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You need to pin your deps to fixed versions or enable lockfile maintenance. Renovate doesn't do in range updates by default. Another option is to configure range strategy. Please check the docs. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
You need to pin your deps to fixed versions or enable lockfile maintenance. Renovate doesn't do in range updates by default. Another option is to configure range strategy.
Please check the docs.