gitea.tea/renovate.json5
silverwind 25a7aaa777
chore: pin the build toolchain in go.mod
`setup-go` took its version spec from the `go` directive, and `go 1.26` is a
range, so every job took go1.26.0 out of the runner image while go1.26.5 was
current. The `toolchain` directive names the exact build version, the `go` line
becomes an explicit minimum, and `check-latest` keeps the action from settling
for an older patch.

`go mod tidy` deletes the directive once the `go` line reaches the same
version, so `make tidy` writes it back.

The renovate config drops two presets that the shared default already carries,
`go-deps` fast-tracked the toolchain bump that the weekly group covers too.

Refs: https://github.com/golang/go/issues/75331
Assisted-by: Claude Code:claude-opus-5
2026-08-06 00:09:31 +02:00

7 lines
123 B
Plaintext

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>gitea/renovate-config"
]
}