Files
tracks/renovate.json
T
Sagent 31b0445939
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Successful in 53s
Docker Build and Push / test (pull_request) Successful in 20s
Docker Build and Push / push (pull_request) Has been skipped
chore: improve renovate dependency detection
- Add custom regexManager to detect jcabillot/phpapache base image version from ARG VERSION
2026-06-09 02:20:05 +00:00

16 lines
427 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Detect ARG VERSION pin for jcabillot/phpapache base image",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"ARG\\s+VERSION=\"(?<currentValue>[^\"]+)\""
],
"depNameTemplate": "jcabillot/phpapache",
"datasourceTemplate": "docker"
}
]
}