Commit 9aee6ec9 authored by Laurent CROQ's avatar Laurent CROQ Committed by Pierre Smeyers
Browse files

fix: replace deprecated fileMatch with managerFilePatterns

parent 689f2fcd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,13 +91,13 @@ The default [onboarding configuration](https://docs.renovatebot.com/self-hosted-
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ], 
      "managerFilePatterns": [ "\\.gitlab-ci\\.ya?ml$" ], 
      "matchStrings": [ "\\s?_IMAGE:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]" ], 
      "datasourceTemplate": "docker" 
    },
    {
      "customType": "regex",
      "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ], 
      "managerFilePatterns": [ "\\.gitlab-ci\\.ya?ml$" ], 
      "matchStrings": [ "\\s?image:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]" ], 
      "datasourceTemplate": "docker" 
    }
+4 −4
Original line number Diff line number Diff line
@@ -41,13 +41,13 @@ spec:
          "customManagers": [
            {
              "customType": "regex",
              "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ], 
              "managerFilePatterns": [ "\\.gitlab-ci\\.ya?ml$" ], 
              "matchStrings": [ "\\s?_IMAGE:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]" ], 
              "datasourceTemplate": "docker" 
            },
            {
              "customType": "regex",
              "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ], 
              "managerFilePatterns": [ "\\.gitlab-ci\\.ya?ml$" ], 
              "matchStrings": [ "\\s?image:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]" ], 
              "datasourceTemplate": "docker" 
            }