Skip to content

Commit

Permalink
Update renovate.json configuration
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
stephdl committed Aug 29, 2024
1 parent 0959b83 commit 4e8c044
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -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:(?<currentValue>[-0-9\\.a-z]+)"],
"datasourceTemplate": "docker",
"depNameTemplate": "wordpress"
},
{
"fileMatch": ["build-images.sh"],
"matchStrings": ["docker\\.io/mariadb:(?<currentValue>[-0-9\\.a-z]+)"],
"datasourceTemplate": "docker",
"depNameTemplate": "mariadb"
}
],
"packageRules": [
{
"matchPackageNames": ["mariadb"],
"allowedVersions": "<= 10.11"
}
]
}

0 comments on commit 4e8c044

Please sign in to comment.