From 4e8c044184f144002cd2858930c755c13f30f1df Mon Sep 17 00:00:00 2001 From: Stephane de Labrusse Date: Thu, 29 Aug 2024 10:11:31 +0200 Subject: [PATCH] Update renovate.json configuration This commit updates the `renovate.json` configuration file. It extends the base configuration, ignores specific paths, and adds regex managers and package rules for `mariadb` with allowed versions up to `10.11`. --- renovate.json | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 0e36fbb..c9a248d 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,25 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "local>NethServer/.github:renovate-config" + "extends": ["config:base"], + "ignorePaths": ["**/ui/**", "**/.devcontainer/**"], + "regexManagers": [ + { + "fileMatch": ["build-images.sh"], + "matchStrings": ["docker\\.io/wordpress:(?[-0-9\\.a-z]+)"], + "datasourceTemplate": "docker", + "depNameTemplate": "wordpress" + }, + { + "fileMatch": ["build-images.sh"], + "matchStrings": ["docker\\.io/mariadb:(?[-0-9\\.a-z]+)"], + "datasourceTemplate": "docker", + "depNameTemplate": "mariadb" + } + ], + "packageRules": [ + { + "matchPackageNames": ["mariadb"], + "allowedVersions": "<= 10.11" + } ] }