Can't get Renovate Bot to follow latest
and not next
tag of n8n
#34456
Replies: 4 comments 11 replies
-
Hi there, Please help this Discussion progress by creating a minimal reproduction. This means a repository dedicated to reproducing this issue with the minimal dependencies and config possible. Before we start working on your issue we need to know exactly what's causing the current behavior. A minimal reproduction helps us with this. Discussions without reproductions are less likely to be converted to Issues. Please follow these steps:
If you need help with running renovate on your minimal reproduction repository, please refer to our Running Renovate guide. The Renovate team |
Beta Was this translation helpful? Give feedback.
-
https://github.com/mathisgauthey/34456 The bot doesn't seem to pick it up but anyway here it is ! 😁 |
Beta Was this translation helpful? Give feedback.
-
Hi there, We appreciate the effort you put into creating a reproduction. But your reproduction is not minimal yet, or is missing fields we ask for in our template. Please re-read the steps and documentation given in the previous message, and try again to create a minimal reproduction. Thanks, the Renovate team |
Beta Was this translation helpful? Give feedback.
-
I just tried some new settings : "packageRules": [
{
"matchDatasources": ["docker"],
"matchPackageNames": ["ghcr.io/n8n-io/n8n"],
"overridePackageName": "n8n-io/n8n",
"overrideDatasource": "github-releases",
"extractVersion": "@(\\d+\\.\\d+\\.\\d+)"
}
] But still get the no release found. I can't seem to make github-release work properly.
|
Beta Was this translation helpful? Give feedback.
-
How are you running Renovate?
Self-hosted Renovate
If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.
AzureDevOps
Please tell us more about your question or problem
Hey there. I'm trying to make renovate-bot automatically update my
docker-compose.yaml
file by adjusting the n8n image version. Issue is that it is taking the last semver version, but it corresponds to thenext
tag which is a pre-release one.My docker compose contains a
image: docker.n8n.io/n8nio/n8n:1.78.0
, and I would like it to update to thelatest
equivalent in semver.n8n releases can be found :
I tried without success to :
respectLatest
to trueignoreUnstable
to trueextends
to use theconfig:best-practices
packageRules
with amatchPackageNames
todocker.n8n.io/n8nio/n8n
and use thefollowTag
tolatest
. It resulted in the following error :Can't find version with tag latest for docker package docker.n8n.io/n8nio/n8n
But each time, it did not work. I don't know what to do now.
Renovate config
Here is my config with redacted names :
Logs (if relevant)
Related issues
Reproducible example
Beta Was this translation helpful? Give feedback.
All reactions