-
Notifications
You must be signed in to change notification settings - Fork 338
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
Build is extremely brittle due to usage of latest.release #1508
Comments
Related #1484 |
Going to close this issue as a duplicate of #1484 |
We can commit to once-a-day dependency locking, but we will not rely on Dependabot as it is not nearly sophisticated enough to deal with Gradle dependency management. We can craft a Github action workflow to attempt to update dependencies once a day, and if the tests pass, commit the new lock. |
Repository owner
moved this from Backlog
to Done
in OpenRewrite
Mar 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I had two build issues trying to build OpenRewrite lately:
This, without any change on my side.
This all boils down to the massive use of
latest.release
as the version of dependencies in the codebase which makes builds non reproducible and very brittle as soon as the latest release has problems or incompatibility issues with the codebase.Wondering if it would be better to switch to hardcoded versions and using Dependabot to suggest the updates automatically?
That should make the builds more solid and at least a build of the exact same code would lead to the same result from one day to another.
The text was updated successfully, but these errors were encountered: