-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify renovate config #594
Conversation
@@ -1,7 +1,8 @@ | |||
{ | |||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | |||
"extends": [ | |||
"config:base" | |||
"config:recommended", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config:recommended
includes all of the groupings I deleted below
@@ -1,7 +1,8 @@ | |||
{ | |||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | |||
"extends": [ | |||
"config:base" | |||
"config:recommended", | |||
"customManagers:dockerfileVersions" // used by logging-k8s-stdout-otlp-json/Dockerfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should replace the customManager inlined below
@@ -3,7 +3,7 @@ FROM eclipse-temurin:21-jre | |||
WORKDIR /usr/src/app/ | |||
|
|||
# renovate: datasource=github-releases depName=opentelemetry-java-instrumentation packageName=open-telemetry/opentelemetry-java-instrumentation | |||
ENV OPENTELEMETRY_JAVA_INSTRUMENTATION_VERSION=v2.12.0 | |||
ENV OPENTELEMETRY_JAVA_INSTRUMENTATION_VERSION=v2.11.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I bumped this back a version in order to verify once this is merged that renovate is still finding and updating it
No description provided.