Questions tagged [renovate]

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.

75 questions
1
vote
1 answer

Custom renovate presets on Butbucket-server

I just tried to create a custom preset for renovate as described here. My goal was to ban certain versions of dependencies. So I created a JSON file my.json like this: { "packageRules": [ { "matchPackageNames":…
Christian Frommeyer
  • 1,390
  • 1
  • 12
  • 20
1
vote
1 answer

Gitlab project bot commit author as an authenticated user

I'm trying to set up a self-hosted Gitlab project with renovate to automatically create merge requests for dependency updates. I created a Gitlab project token/bot with the name "renovate" which resolves to "project_123_bot". The rub is that my…
1
vote
2 answers

How to only create a PR for matchedDependencies with Renovate

I want to only create a Pull Request for the below specified dependencies. All other dependencies should not be considered. The config below does not do that because I get separate PR's for all dependencies that do not match the rules I specified.…
Epi
  • 322
  • 2
  • 15
0
votes
1 answer

check access toke is valid with github action

In Github I have created a personal access token in https://github.com/settings/tokens Than added it to https://github.com/myrepo/settings/secrets/actions Repository secrets with full repo rights I tried to run a renovate bot…
user3732793
  • 1,699
  • 4
  • 24
  • 53
0
votes
0 answers

Using Renovate Bot Amazon Machine Image (AMI) data source and two different AWS regions

In my Git repository I have several places where I define Amazon Machine Images (AMI). Unfortunately, AMIs of TEST and INT environment are from the region "eu-central-1" and AMIs of PROD environment are from "eu-west-1". If I search my Git…
0
votes
0 answers

Use Renovate to update submodules in bitbucket pipeline

According to the ticket https://github.com/renovatebot/renovate/pull/8164 submodules are fetched using https not ssh which should fix the issue of renovate not working for private submodules. However, I still get the error "Error mapping git…
Flying Swissman
  • 818
  • 2
  • 14
  • 39
0
votes
0 answers

Prevent renovate from updating not semantically versioned dependecies to -SNAPSHOT

Renovate updates org.spockframework spock-core 2.4-M1-groovy-4.0 test to org.spockframework
Mr. Gung
  • 117
  • 1
  • 9
0
votes
0 answers

private OCI registry for renovate

We have an internal rule that we need to store all the charts and images on our own private registry and use them from there. I have some issue making renovate to check the dependencies from our private OCI Harbor registry. renovate: config: | …
0
votes
0 answers

Renovate bot and latest images tags from Redhat public registry

I'm using renovate to update Docker images from Redhat public registry : https://registry.access.redhat.com which is a Docker V2 registry. Renovate is not able to detect latest images version for ubi8-minimal by example. I tried to curl the registry…
javaxiss
  • 680
  • 3
  • 13
  • 34
0
votes
1 answer

Renovate bot not adding reviewers for BitBucket

We are using Renovate to keep our dependencies up to date. Our code is hosted in BitBucket cloud. I have added a reviewers configuration to the renovate.json but it doesn't add any reviewers to the PRs that it creates. For the reviewers I have tried…
Matthew van Boheemen
  • 1,087
  • 3
  • 13
  • 21
0
votes
1 answer

Is there a CLI tool for keeping software dependencies up to date? (e.g. cli mode for renovate or dependabot)

How can I run renovate or dependabot via the CLI on a codebase to have it update the dependencies in the projects local files? I'm looking to use one of these tools to run locally and pointed at a project on the file system. When finished, I expect…
Scott G
  • 637
  • 6
  • 10
0
votes
3 answers

How to auto approve renovate merge requests in gitlab?

We use RenovateBot to update our dependencies in GitLab. To avoid that every request have to be approved by a specific amount of persons, I want to auto approve all MRs of renovate. In the documentation I found autoApprove, but that seems to be just…
JuliusH4
  • 11
  • 3
0
votes
1 answer

Renovate: packageRules are not treated separetly

We are currently using this renovate config in different repos: { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base" ], "labels": ["dependencies"], "packageRules": [ { …
GalloCedrone
  • 4,869
  • 3
  • 25
  • 41
0
votes
1 answer

Does Renovatebot run composer plugins?

I'm trying to find out if Composer plugins work with Renovatebot, because, in my local environment, the lines below merge the webform/composer.libraries.json with my composer.json, but do not work with the GitHub/Renovate integration. It is like the…
Beto Aveiga
  • 3,466
  • 4
  • 27
  • 39
0
votes
1 answer

Configure Renovate Bot to use custom NodeJS image

I am using a self hosted Renovate Bot instance in a air gapped Gitlab to handle NodeJS module updates. I read multiple times the documentation but I do not understand how I should configure the bot to avoid the download of node and npm. I set…
Marco Stramezzi
  • 2,143
  • 4
  • 17
  • 37