mirror of
https://github.com/kubereboot/kured.git
synced 2026-04-20 00:26:59 +00:00
We have historically decided to support AND TEST 3 versions of kubernetes. For that, we lagged behind in terms of client versions. Lagging behind one version allowed us, thanks to kubernetes client version skew, to support 3 versions at relatively low cost. However, maintaining 3 versions has always been a pain. For that, we pinned old versions of kubernetes clients/api and test tooling. In december 2025 community meeting, we decided to only maintain two versions: the most current one, and the previous one. This allows us to bump more regularly and be more secure. We can also more easily use dependabot this way. Signed-off-by: Jean-Philippe Evrard <open-source@a.spamming.party>
17 lines
375 B
YAML
17 lines
375 B
YAML
version: 2
|
|
updates:
|
|
# Maintain dependencies for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
# Maintain dependencies for gomod
|
|
- package-ecosystem: "gomod"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
- package-ecosystem: "docker"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|