From 3b72d500983036ec76d33e70a1a177f800321d78 Mon Sep 17 00:00:00 2001
From: Sebastian Poxhofer <secustor@users.noreply.github.com>
Date: Thu, 12 Jan 2023 09:04:14 +0100
Subject: [PATCH] fix(manager/terragrunt): prevent overwriting versioning of
 GithubTags datasource (#19782)

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
---
 lib/modules/manager/terragrunt/index.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/modules/manager/terragrunt/index.ts b/lib/modules/manager/terragrunt/index.ts
index 126af225f0..78eb46b346 100644
--- a/lib/modules/manager/terragrunt/index.ts
+++ b/lib/modules/manager/terragrunt/index.ts
@@ -1,7 +1,6 @@
 import { GitTagsDatasource } from '../../datasource/git-tags';
 import { GithubTagsDatasource } from '../../datasource/github-tags';
 import { TerraformModuleDatasource } from '../../datasource/terraform-module';
-import * as hashicorpVersioning from '../../versioning/hashicorp';
 
 export { extractPackageFile } from './extract';
 
@@ -14,5 +13,4 @@ export const supportedDatasources = [
 export const defaultConfig = {
   commitMessageTopic: 'Terragrunt dependency {{depName}}',
   fileMatch: ['(^|/)terragrunt\\.hcl$'],
-  versioning: hashicorpVersioning.id,
 };
-- 
GitLab