From a5602c74f2de6578fc63fb74cd095c4e3ffa771e Mon Sep 17 00:00:00 2001 From: Glenn Watson <5834289+glennawatson@users.noreply.github.com> Date: Fri, 31 Jul 2026 15:47:31 +1000 Subject: [PATCH] chore(renovate): replace deprecated fileMatch with managerFilePatterns - Rename fileMatch to managerFilePatterns on the certum-sign custom manager. - Wrap the value as an explicit regex; the pattern itself is unchanged. --- .github/renovate.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 0583fd8..5da9e5b 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,10 +1,14 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>reactiveui/.github:renovate"], + "extends": [ + "local>reactiveui/.github:renovate" + ], "customManagers": [ { "customType": "regex", - "fileMatch": ["^\\.github/actions/certum-sign/action\\.yml$"], + "managerFilePatterns": [ + "/^\\.github/actions/certum-sign/action\\.yml$/" + ], "matchStrings": [ "# renovate: datasource=(?\\S+) depName=(?\\S+)\\s+default: '(?[^']+)'" ]