Files
cnpg-postgres-containers/renovate.json
Francesco Canovai 745cf7aecf chore: add github actions to renovate config (#144)
Allow renovate to update the GitHub workflows.

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
2025-01-22 18:40:26 +01:00

24 lines
726 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "docker:pinDigests"],
"enabledManagers": [
"github-actions",
"custom.regex"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["docker-bake.hcl"],
"matchStrings": [
"\\/\\/\\s*renovate:\\s*datasource=(?<datasource>.*?)\\s+(versioning=(?<versioning>.*?))?\\s+\"(?<depName>[^:]+):(?<currentValue>[^\\s@]+)(@(?<currentDigest>sha256:[0-9a-f]*))?\""
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"matchPackageNames": ["debian"],
"groupName": "Debian base images"
}
]
}