From a8feda02a6e9070d4b527e6c34b6f7b2231670cc Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 02:20:05 +0000 Subject: [PATCH 1/2] 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" + } + ] +} From 5d86dd68d518c0400488b2d1ac7de8fd9e9a684a Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 13:40:36 +0000 Subject: [PATCH 2/2] chore: remove redundant configs now handled globally --- renovate.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 3f873d1..7041178 100644 --- a/renovate.json +++ b/renovate.json @@ -1,13 +1,12 @@ { "$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$"], + "fileMatch": [ + "^Dockerfile$" + ], "matchStrings": [ "ARG\\s+VERSION=\"(?[^\"]+)\"" ],