From dd1d848b03fcc0573d1c8a7d58ada70451547259 Mon Sep 17 00:00:00 2001 From: Wayne Starr Date: Thu, 1 Feb 2024 14:39:34 -0600 Subject: [PATCH] chore: update renovate.json to catch inverse charts (#2278) ## Description This adds a second check for inverted versions/urls in chart definitions ## Related Issue Fixes #N/A ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [X] Other (security config, docs update, etc) ## Checklist before merging - [X] Test, docs, adr added or updated as needed - [X] [Contributor Guide Steps](https://github.com/defenseunicorns/zarf/blob/main/CONTRIBUTING.md#developer-workflow) followed --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 2017ccbce4..2307ad4e54 100644 --- a/renovate.json +++ b/renovate.json @@ -46,7 +46,8 @@ "matchStringsStrategy": "recursive", "matchStrings": [ "charts:(.|\n)*?(^\\s{4}[\\w:]+|\n$|^\\s{2}-)", - "- name: (?.+)(.|\n)*?url: (?.+)(.|\n)*?version: (?.+)" + "- name: (?.+)(.|\n)*?url: (?.+)(.|\n)*?version: (?.+)", + "- name: (?.+)(.|\n)*?version: (?.+)(.|\n)*?url: (?.+)" ], "datasourceTemplate": "helm" },