Update .github/renovate.json

This commit is contained in:
Matt Reeves 2024-11-02 23:29:24 -04:00
parent bbb762337a
commit ccf55aeac7

25
.github/renovate.json vendored
View file

@ -1,18 +1,31 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:base"
],
"dependencyDashboardTitle": ":robot: Renovate Dashboard",
"regexManagers": [
{
"description": "Process Docker YML files",
"fileMatch": [
"docker/.+\\.y?ml$"
],
"matchStrings": [
"version: (?<currentValue>\\S+)"
],
"datasourceTemplate": "docker",
"currentValueTemplate": "{{{ currentValue }}}"
},
{
"description": "Process Terraform files",
"fileMatch": [
"ansible/.+\\.ya?ml$",
"docker/.+\\.ya?ml$",
"kubernetes/.+\\.ya?ml$",
"packer/.+\\.hcl$",
"terraform/.+\\.tf$"
]
],
"matchStrings": [
"source\\s*=\\s*\"(?<depName>[^\"]+):(?!/)\\S+@(?<currentValue>\\S+)\""
],
"datasourceTemplate": "terraform",
"currentValueTemplate": "{{{ currentValue }}}"
}
]
}