Add custom manager for oci image references

Found at https://gist.github.com/itz-Jana/2627b87f47a0141dd98636276bd2a1f6
This commit is contained in:
JuliusFreudenberger 2026-06-18 01:48:44 +02:00
parent 8ae895ac29
commit ddfe28de8d

View file

@ -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+\"(?<depName>.*?):(?<currentValue>.*?)\""
]
}
]
}