From 114555e6425b5c481e1419150c3f1126789d6fdf Mon Sep 17 00:00:00 2001 From: Tristan Holaday <40547442+TristanHoladay@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:41:24 -0700 Subject: [PATCH] fix: renovate (#35) * chore: update renovate to not allow big-bang/base:8.4 * fix: docker regex match for zarf yaml to match only on images. --------- Co-authored-by: Micah Nagel --- renovate.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index abf8a0e7..492da133 100644 --- a/renovate.json +++ b/renovate.json @@ -70,7 +70,7 @@ { "fileMatch": [".*\/?zarf\\.ya?ml$"], "matchStrings": [ - "-\\s+['\"]?(?[^:]+):(?.*)['\"]?" + "- [\\'\"]?(?[^\"\\'\\s]+):(?[^\"\\'\\s]+)[\\'\"]?" ], "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver-coerced{{/if}}", "datasourceTemplate": "docker", @@ -100,5 +100,11 @@ ], "datasourceTemplate": "helm" } + ], + "packageRules": [ + { + "matchPackageNames": ["registry1.dso.mil/ironbank/big-bang/base"], + "allowedVersions": "!/8.4/" + } ] }