diff --git a/.github/renovate.json b/.github/renovate.json index 025f9f4..4241184 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -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: (?\\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*\"(?[^\"]+):(?!/)\\S+@(?\\S+)\"" + ], + "datasourceTemplate": "terraform", + "currentValueTemplate": "{{{ currentValue }}}" } ] }