diff --git a/renovate.json b/renovate.json index 7190a60..9798d5e 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,15 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "customManagers": [ + { + "description": "Update Docker image tags in Nomad job files", + "customType": "regex", + "fileMatch": ["\\.nomad\\.hcl$"], + "matchStrings": [ + "image\\s*=\\s*\"(?[^:\"]+):(?[^\"]+)\"" + ], + "datasourceTemplate": "docker" + } + ] }