You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dependabot: disable version bump checks/only keep security updates
Go uses a minimal version selection algorithm to select the version of modules
used in a build (see https://github.com/golang/go/wiki/Modules#version-selection).
From the go wiki:
```
[...] if your module depends on module A which has a require D v1.0.0, and your module
also depends on module B which has a require D v1.1.1, then minimal version selection
would choose v1.1.1 of D to include in the build (given it is the highest listed require version).
```
Since `compose-go` is a library and meant to be used by downstream implementations, in order
to maximize compatibility with other imports we should try to use the lowest version of any
dependencies we need, as opposed to using whatever latest version is available.
This commit changes the dependabot config to disable version bumps, but does keep security
updates enabled.
(see: https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates)
Signed-off-by: Laura Brehm <[email protected]>
0 commit comments