-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
fix: renovate dockerfile handling #4381
Conversation
@@ -6,7 +6,7 @@ ARG GOLANG_VERSION=1.22.1 | |||
|
|||
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp | |||
ARG DEFAULT_TERRAFORM_VERSION=1.7.2 | |||
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp | |||
# renovate: datasource=github-releases depName=opentofu/opentofu versioning=hashicorp |
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.
is versioning=hashicorp for opentofu?
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.
Yes, I believe so.
Hi tiago. Thanks for this pr. Could you resolve the conflicts? Also could you link to your fork's renovate page where it shows the additional dependencies screenshot above? |
I don't want to steal Tiagos contribution, but would like to see this progress. |
Thanks @tiagomeireles! |
what
The Dockerfile defines default versions of terraform, opentofu and conftest in
ARG
's. Renovate will now update these.This also corrects the renovate configuration for opentofu.
why
This broke in 6d3aef2 when it switched the defines from
ENV
s toARG
s.tests
Manually tested on my fork of Atlantis.
references