From 920c06010f8d60837743538be845ca4c70f833b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 15:17:01 +0100 Subject: [PATCH] chore: configure Renovate (#141) Configure renovate to update the Debian images used as base for the minimal and standard container images. Signed-off-by: Francesco Canovai Co-authored-by: Francesco Canovai --- renovate.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..ebe2ed91 --- /dev/null +++ b/renovate.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", "docker:pinDigests"], + "enabledManagers": ["custom.regex"], + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["docker-bake.hcl"], + "matchStrings": [ + "\\/\\/\\s*renovate:\\s*datasource=(?.*?)\\s+(versioning=(?.*?))?\\s+\"(?[^:]+):(?[^\\s@]+)(@(?sha256:[0-9a-f]*))?\"" + ], + "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}" + } + ], + "packageRules": [ + { + "matchPackageNames": ["debian"], + "groupName": "Debian base images" + } + ] +} \ No newline at end of file