1 Commits

Author SHA1 Message Date
renovate 160a298cfb chore(config): migrate config renovate.json
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 42s
Docker Build and Push / test (pull_request) Successful in 22s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-12 14:37:16 +00:00
+9 -12
View File
@@ -5,34 +5,31 @@
"customType": "regex", "customType": "regex",
"description": "Detect SABnzbd release version pin", "description": "Detect SABnzbd release version pin",
"managerFilePatterns": [ "managerFilePatterns": [
"//^Dockerfile$//" "/^Dockerfile$/"
], ],
"matchStrings": ["SABNZBD_VERSION=(?<currentValue>[\\w\\.-]+)"], "matchStrings": ["SABNZBD_VERSION=(?<currentValue>[0-9.]+)"],
"depNameTemplate": "sabnzbd/sabnzbd", "depNameTemplate": "sabnzbd/sabnzbd",
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases"
"versioningTemplate": "semver"
}, },
{ {
"customType": "regex", "customType": "regex",
"description": "Detect Tini release version pin", "description": "Detect Tini release version pin",
"managerFilePatterns": [ "managerFilePatterns": [
"//^Dockerfile$//" "/^Dockerfile$/"
], ],
"matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?<currentValue>[\\w\\.-]+)\""], "matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?<currentValue>[0-9.]+)\""],
"depNameTemplate": "krallin/tini", "depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases"
"versioningTemplate": "semver"
}, },
{ {
"customType": "regex", "customType": "regex",
"description": "Detect par2cmdline release version pin", "description": "Detect par2cmdline release version pin",
"managerFilePatterns": [ "managerFilePatterns": [
"//^Dockerfile$//" "/^Dockerfile$/"
], ],
"matchStrings": ["PAR2CMDLINE_VERSION=v?(?<currentValue>[\\w\\.-]+)"], "matchStrings": ["PAR2CMDLINE_VERSION=v?(?<currentValue>[0-9a-z.]+-mt\\d+)"],
"depNameTemplate": "jkansanen/par2cmdline-mt", "depNameTemplate": "jkansanen/par2cmdline-mt",
"datasourceTemplate": "github-tags", "datasourceTemplate": "github-tags"
"versioningTemplate": "semver"
} }
] ]
} }