Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 26 additions & 39 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,32 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"extends": ["config:recommended"],
"prConcurrentLimit": 5,
"semanticCommits": "enabled",
"regexManagers": [
{
// We want a PR to bump kind version
"fileMatch": [
"^.github/workflows/run-e2e.yml"
],
"matchStrings": [
"KIND_VERSION: \"(?<currentValue>.*?)\""
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "kubernetes-sigs/kind"
}, {
// We want a PR to bump kind node version
"fileMatch": [
"^.github/workflows/run-e2e.yml"
],
"matchStrings": [
"K8S_VERSION: \"(?<currentValue>.*?)\""
],
"datasourceTemplate": "docker",
"versioningTemplate": "loose",
"depNameTemplate": "kindest/node"
}, {
// We want a PR to bump Go versions used through env variables in any GitHub
// Actions, taking it from the official GitHub repository.
"fileMatch": [
"^\\.github\\/workflows\\/[^/]+\\.ya?ml$"
],
"matchStrings": [
"GOLANG_VERSION: \"(?<currentValue>.*?)\\.x\"",
],
"datasourceTemplate": "golang-version",
"depNameTemplate": "golang",
"versioningTemplate": "loose",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+)"
}
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^.github/workflows/run-e2e.yml"],
"matchStrings": ["KIND_VERSION: \"(?<currentValue>.*?)\""],
"datasourceTemplate": "github-tags",
"depNameTemplate": "kubernetes-sigs/kind"
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/run-e2e.yml"],
"matchStrings": ["K8S_VERSION: \"(?<currentValue>.*?)\""],
"datasourceTemplate": "docker",
"versioningTemplate": "loose",
"depNameTemplate": "kindest/node"
},
{
"customType": "regex",
"fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
"matchStrings": ["GOLANG_VERSION: \"(?<currentValue>.*?)\\.x\""],
"datasourceTemplate": "golang-version",
"depNameTemplate": "golang",
"versioningTemplate": "loose",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+)"
}
]
}