chore: improve renovate dependency detection
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 1m2s
Docker Build and Push / test (pull_request) Successful in 39s
Docker Build and Push / push (pull_request) Has been skipped

- Add custom regexManager to detect s6-overlay release version from curl download
This commit is contained in:
Sagent
2026-06-09 02:20:14 +00:00
parent 113e9216c5
commit d82bdf6377
+15
View File
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Detect s6-overlay release version in Dockerfile curl download",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"s6-overlay/releases/download/v(?<currentValue>[0-9.]+)/s6-overlay"
],
"depNameTemplate": "just-containers/s6-overlay",
"datasourceTemplate": "github-releases"
}
]
}