Ensure that version declarations in configuration files accurately reflect the versions actually being used in runtime environments. Configuration drift occurs when declared versions diverge from deployed versions, leading to inconsistent environments and potential deployment issues.
Ensure that version declarations in configuration files accurately reflect the versions actually being used in runtime environments. Configuration drift occurs when declared versions diverge from deployed versions, leading to inconsistent environments and potential deployment issues.
When updating configuration files, verify that the specified versions match what’s currently deployed or intended for deployment. Avoid situations where configuration declares one version while the system runs another.
Example from mise.toml:
# Bad: Config says node 24, but runtime uses 20.19
node = "24" # Actually running 20.19
# Good: Config matches runtime
node = "20.19" # Matches actual deployed version
Before committing configuration changes, validate that:
Enter the URL of a public GitHub repository