-
|
Hey. Since self-hosted renovate is using a docker container it is not exposed to the java and bazel I install as part of my GitHub workflow setup. I ended up passing the various environment variables and Is there a blessed pattern to achieve my goal? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
You should probably not use the action and instead run the job inside the renovate image, like we do for config validation, see: https://github.com/renovatebot/.github/blob/main/.github/workflows/test.yml#L40-L62 Then you can prepare any tools you need before running renovate |
Beta Was this translation helpful? Give feedback.
You should probably not use the action and instead run the job inside the renovate image, like we do for config validation, see:
https://github.com/renovatebot/.github/blob/main/.github/workflows/test.yml#L40-L62
Then you can prepare any tools you need before running renovate