diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 8c80299..950a2f1 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,20 +1,27 @@ { - $schema: "https://docs.renovatebot.com/renovate-schema.json", - extends: ["config:base"], + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + ], lockFileMaintenance: { enabled: true, - extends: ["schedule:weekly"], + extends: [ + 'schedule:weekly', + ], }, nix: { enabled: true, }, - regexManagers: [ + customManagers: [ { - fileMatch: ["^.*\\.nix$"], + customType: 'regex', + fileMatch: [ + '^.*\\.nix$', + ], matchStrings: [ 'image *= *"(?[^"]+):(?[^"]+)(@(?sha256:[a-f0-9]+))?";', ], - datasourceTemplate: "docker", + datasourceTemplate: 'docker', }, ], }