Renovate is an open source bot allowing automated dependency updates, multi-platform and multi-language. If you have any questions about bot configuration, or have problems understanding the documentation of the tool, ask your question using this tag.
Questions tagged [renovate]
75 questions
0
votes
1 answer
How to replace version references in Renovate `postUpgradeTasks`?
I've set up renovatebot on GitLab to keep package versions in another repository up to date. But outside of the relevant lock file there are other files which also reference certain package versions. For example, in the readme:
If you don't want to…

l0b0
- 55,365
- 30
- 138
- 223
0
votes
1 answer
Renovate gitlab private registry dependency
I am trying to integrate Renovate into my GitLab self-hosted environment, and I have a project that connects to some monorepo dependencies hosted on a private GitLab registry.
I am trying to run Renovate on these dependencies, but I keep receiving…

Luca Valsecchi
- 81
- 8
0
votes
1 answer
renovate config issues with labels
Im trying to configure renovate to label things and test various configs, but struggling to get a results im happy with.
My current renovate.json file is:
{
"$schema":"https://docs.renovatebot.com/renovate-schema.json",
"extends":[
…

Staggerlee011
- 847
- 2
- 13
- 23
0
votes
0 answers
Is there a way to set up GitLab renovate bot to automatically resolve composer.lock "content-hash" conflict using update --lock option?
I'm using Renovate Bot on my repository. When it updates any two composer packages, I can easily merge first one, but second one always conflicts on "content-hash" option. What can I do to make Renovate Bot automatically resolve such "simple"…

LeTraceurSnork
- 13
- 7
0
votes
1 answer
How to configure Renovate to run generateJooq gradle task when jOOQ version is updated?
I would like to run the generateJooq gradle task automatically whenever Renovate updates the jOOQ version.
I use jOOQ in my Java project. When Renovate updates it, the library's version is changed, but all auto-generated jOOQ classes are not…
0
votes
1 answer
Renovate custom dependency type
We have a renovate bot running for npm with no special configurations.
There we have two sections in our package.json
"projectDependencies": {
"package-a": "5.1.1"
},
"dependencies": {
"package-b": "~15.2.3",
}
Renovate only updates…

Flo
- 2,699
- 4
- 24
- 46
0
votes
0 answers
Using Renovate with leining and multiple repositories
I have this problem, which i cant seem to solve..
Renovate configure gives me error Failed to look up clojure dependency org.clojure:clojure (and for every other listed :dependencies too)
Looking at the logs, renovate is trying to find updates from…

Clomez
- 1,410
- 3
- 21
- 41
0
votes
1 answer
Force Renovate to update libraries before updating service
we have a couple of spring boot microservices. Those services depend on our libraries. Those libraries depend on spring boot dependencies (as do the services).
We are using Renovate to keep those dependencies up to date. Having this chain of…

Obenland
- 856
- 16
- 28
0
votes
1 answer
How to configure Renovate to update dependencies based on GitHub tags?
I would like Renovate to scan through a yml file and update this value using GitHub tags as the datasource, with these tags being in another GitHub repository. Both of the repositories are private and have Renovate installed on them.
Repo A -…

aa435
- 65
- 1
- 7
0
votes
1 answer
Renovate Dependency bot cannot find repos
I'm trying to get renovate bot setup using the CLI so that I can play around with the config file before setting up it up to run in a docker container.
I've created a private test repository in GitHub containing a simple "hello world" project that…

Jacob Jameson
- 103
- 3
0
votes
0 answers
Renovate dockerfile when version is specified in url
I would like to renovate synopsys-detect dockerfile which looks like that:
FROM artifactory...alpine:3
RUN apk --no-cache add \
bash \
curl \
git \
openjdk11-jre \
py3-pip \
python3
ENV…

Frendom
- 508
- 6
- 24
0
votes
0 answers
Differentiate java versions in Renovate
I would like to differentiate multiple Java versions in Renovate. The problem is, let's say the Tags which I'm getting are all under https://www.gitlab.com/binaries.
They look like this:
22.11.0-java17-1
23.2.0-java8-1
23.2.0-java11-1
Now when I…

Tim Reber
- 9
- 2
0
votes
1 answer
Renovate: multiple 'allowedVersions' settings for the same package pattern
Our company-preset-repo default.json contains the following packageRule which is supposed to exclude maven dependencies that contain .redhat- in the field.
{
"matchManagers": ["maven"],
"matchPackageNames": [
…

Chris
- 4,212
- 5
- 37
- 52
0
votes
2 answers
Renovate bot Azure DevOps npm feed auth error
I get an 401 error if I try to use my private npm registry in Azure DevOps. My configuration looks like this:
# pipeline.yaml (repo root folder)
steps:
- task: npmAuthenticate@0
inputs:
workingFile: .npmrc
- script: |
git config…

rene
- 3
- 3
0
votes
1 answer
How to block docker image version of services in Github action in renovate config
In my CI/CD workflow, i've added renovate but i'v some PR for version upgrade i don't want. For example, it suggest me to upgrade mysql version in my yml file defining github action workflow. Here i use :
mysql:
image: mysql:5.7
But…

MathKimRobin
- 1,268
- 3
- 21
- 52