0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 21:48:32 +00:00
renovatebot_renovate/lib/modules/versioning/go-mod-directive/readme.md
2022-12-17 08:12:57 +01:00

18 lines
539 B
Markdown

This versioning is used exclusively for the `go` directive in `go.mod` files.
It ensures that a value like `1.16` is treated like `^1.16` and not `~1.16`.
By default this will mean that the `go` directive in `go.mod` files won't get upgraded to any new Go version, such as `1.19`.
If you wish to upgrade this value every time there's a new minor Go release, configure `rangeStrategy` to be `"bump"` like so:
```json
{
"packageRules": [
{
"matchDatasources": ["golang-version"],
"rangeStrategy": "bump"
}
]
}
```