From ddfe28de8dd85c995853da9b24944ed707fe5cef Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Thu, 18 Jun 2026 01:48:44 +0200 Subject: [PATCH] Add custom manager for oci image references Found at https://gist.github.com/itz-Jana/2627b87f47a0141dd98636276bd2a1f6 --- renovate.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index f2665a9..96e8cad 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,17 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "nix": { "enabled": true - } + }, + "customManagers": [ + { + "customType": "regex", + "datasourceTemplate": "docker", + "fileMatch": [ + ".+\\.nix$" + ], + "matchStrings": [ + "\\s+image\\s+=\\s+\"(?.*?):(?.*?)\"" + ] + } + ] }