From a8feda02a6e9070d4b527e6c34b6f7b2231670cc Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 02:20:05 +0000 Subject: [PATCH] chore: improve renovate dependency detection - Disable gitlabci manager (legacy CI, migrated to Gitea Actions) - Add custom regexManager to detect jcabillot/phpapache base image version from ARG VERSION --- renovate.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..3f873d1 --- /dev/null +++ b/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "gitlabci": { + "enabled": false + }, + "customManagers": [ + { + "customType": "regex", + "description": "Detect ARG VERSION pin for jcabillot/phpapache base image", + "fileMatch": ["^Dockerfile$"], + "matchStrings": [ + "ARG\\s+VERSION=\"(?[^\"]+)\"" + ], + "depNameTemplate": "jcabillot/phpapache", + "datasourceTemplate": "docker" + } + ] +}