From 05d610331cd89af71bccc651224238b7ae75eafa Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 7 Apr 2026 12:44:22 -0400 Subject: [PATCH] fix: widen github provider constraint to >= 6.11.0, drop stale lock file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CSVD/terraform-github-repo module requires ~> 6.11; workspace had >= 6.6.0, < 6.7.0 which is incompatible. Lock file was pinned to 6.6.0 — delete so terraform init regenerates it against the updated constraint. --- providers.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers.tf b/providers.tf index fd4066f..750bf71 100644 --- a/providers.tf +++ b/providers.tf @@ -2,7 +2,7 @@ terraform { required_providers { github = { source = "integrations/github" - version = ">= 6.6.0, < 6.7.0" + version = ">= 6.11.0" } aws = { source = "hashicorp/aws"