Skip to content

Commit

Permalink
Add renovate.json for automated dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Oct 17, 2024
1 parent 2af6ed4 commit 9ffadf7
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,45 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>NethServer/.github:ns8"]
"extends": ["config:base"],
"ignorePaths": ["**/ui/**"],
"regexManagers": [
{
"fileMatch": ["build-images.sh"],
"matchStrings": ["docker\\.io/node:(?<currentValue>[^\\s]+)"],
"depNameTemplate": "node",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["build-images.sh"],
"matchStrings": ["docker\\.io/drakkan/sftpgo:(?<currentValue>[^\\s]+)"],
"depNameTemplate": "drakkan/sftpgo",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["build-images.sh"],
"matchStrings": ["docker\\.io/nginx:(?<currentValue>[^\\s]+)"],
"depNameTemplate": "nginx",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["test-module.sh"],
"matchStrings": [
"ghcr\\.io/marketsquare/robotframework-browser/rfbrowser-stable:(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "MarketSquare/robotframework-browser",
"datasourceTemplate": "github-releases"
}
],
"packageRules": [
{
"matchPackageNames": ["node"],
"allowedVersions": "<= 18"
},
{
"matchPackageNames": [
"ghcr.io/marketsquare/robotframework-browser/rfbrowser-stable"
],
"allowedVersions": "<= 10.0"
}
]
}

0 comments on commit 9ffadf7

Please sign in to comment.