-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Dependency Dashboard issue not responding when checking deps to update #9905
Replies: 1 comment · 4 replies
|
If you check the last log you can see it ran but then at the end: So it was interrupted while running, which is why it didn't complete and then update the Dependency Dashboard. In cases like this (should not be common) you could uncheck the checkbox, wait a few seconds for GitHub to process it, and then check it again to generate a new webhook, which should then trigger a new job right away. |
All reactions
|
Alright, thanks for the response, going to try this now and update this thread. For posterity, I found the warning with the config also in the DEBUG logs by searching for WARN: Found renovate config warnings
{
"warnings": [
{
"topic": "Deprecation Warning",
"message": "Direct editing of commitMessage is now deprecated. Please edit commitMessage's subcomponents instead."
},
{
"topic": "Deprecation Warning",
"message": "Direct editing of prTitle is now deprecated. Please edit commitMessage subcomponents instead as they will be passed through to prTitle."
}
]
} |
All reactions
|
@rarkins I unchecked all checkboxes, waited a couple hours, then rechecked a dep I want to update but the issue still persists. There are no renovatebot PRs being opened and the repo keeps having temporary errors on this Been happening for a whole day. Debug logs below. Debug logs
|
All reactions
|
Sorry, you're right - that SIGTERM is actually coming from a 15 exec timeout we have on all child processes. It seems to have been timing out for some time (more than just a day which your screenshot indicates, because those "done" runs didn't have any yarn commands to run). I ran a I did notice there was an optimization we could do (patching Yarn to finish after it's updated the lock file but before it's downloaded packages) and that seems to work well: renovate-tests/cypress#1 I'll try to get it into the app tomorrow. |
All reactions
|
Great, the renovate dep updates seem to be triggering now. |
All reactions
-
🎉 1

Uh oh!
There was an error while loading. Please reload this page.
What Renovate type, platform and version are you using?
I had no idea where to find this previously but discovered the Renovate app + logs after reading this PR template.
"renovateVersion": "25.16.1"
Renovate type
Renovate platform
Describe the bug
We use the Dependency Dashboard issue for our renovate config, so we go in and click the checkbox in the issue to initiate a dep update from renovatebot.
This has stopped working recently and there's a warning shown in the issue. It doesn't say what config errors there are. I found a duplicate
renovate.jsonfile in our monorepo, so removed that this morning, but it still seems stuck.We do have a considerable amount of deps needing update in our monorepo, so maybe that has something to do with this.
renovate.json: https://github.com/cypress-io/cypress/blob/develop/renovate.jsonRelevant debug logs
I've pasted the end of the logs. It looks like it's having issues with the
renovate/npm-lodash-vulnerabilitybranch? I don't even see this branch on our repo though.Click me to see logs
Have you created a minimal reproduction repository?
Please read the minimal reproductions documentation to learn how to make a good minimal reproduction repository.
Additional context
Thanks for taking a look!
All reactions