From a747411e90d0c9c2328737c09a79fd94f22481e0 Mon Sep 17 00:00:00 2001 From: Ben de Haan <53901866+bendehaan@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:24:22 +0100 Subject: [PATCH 1/2] fix: expand coverage to tools within precommit workflow --- renovate.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/renovate.json b/renovate.json index d0670cadc..0cd7ab3cd 100644 --- a/renovate.json +++ b/renovate.json @@ -13,6 +13,33 @@ "dependencies" ], "customManagers": [ + { + "customType": "regex", + "fileMatch": ".github/workflows/pre-commit.yml", + "depNameTemplate": "OWASP/terraform-docs/terraform-docs", + "matchStrings": [ + "TF_DOCS_VERSION=\"(?.*?)\"" + ], + "datasourceTemplate": "github-releases" + }, + { + "customType": "regex", + "fileMatch": ".github/workflows/pre-commit.yml", + "depNameTemplate": "aquasecurity/tfsec", + "matchStrings": [ + "TFSEC_VERSION=\"(?.*?)\"" + ], + "datasourceTemplate": "github-releases" + }, + { + "customType": "regex", + "fileMatch": ".github/workflows/pre-commit.yml", + "depNameTemplate": "terraform-linters/tflint", + "matchStrings": [ + "TFLINT_VERSION=\"(?.*?)\"" + ], + "datasourceTemplate": "github-releases" + }, { "customType": "regex", "fileMatch": ".github/scripts/docker-create.sh", From 622835b37af23603922f5d317a61f246b46e049f Mon Sep 17 00:00:00 2001 From: Ben de Haan <53901866+bendehaan@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:27:44 +0100 Subject: [PATCH 2/2] fix: change tfdocs repo ref --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 0cd7ab3cd..9bb7846d6 100644 --- a/renovate.json +++ b/renovate.json @@ -16,7 +16,7 @@ { "customType": "regex", "fileMatch": ".github/workflows/pre-commit.yml", - "depNameTemplate": "OWASP/terraform-docs/terraform-docs", + "depNameTemplate": "terraform-docs/terraform-docs", "matchStrings": [ "TF_DOCS_VERSION=\"(?.*?)\"" ],