From 0eb6db26cbf8e5a992d75c48d10a4333ab709000 Mon Sep 17 00:00:00 2001 From: Oleksandr Kuzminskyi Date: Sat, 4 Jul 2026 16:10:04 -0700 Subject: [PATCH] Fix terraform-drift: use `make bootstrap`, not the nonexistent `bootstrap-ci` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The drift job ran `make bootstrap-ci` in environments//, but the shared makefile.mk only defines `bootstrap` (pip install -r requirements.txt) — so the step failed with "No rule to make target 'bootstrap-ci'". terraform-CI/CD already use `make bootstrap`; align the drift workflow with them. Co-Authored-By: Claude Opus 4.8 (1M context) --- modules/service-repo/templates/terraform-drift.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/service-repo/templates/terraform-drift.yml b/modules/service-repo/templates/terraform-drift.yml index adae852..b9f5548 100644 --- a/modules/service-repo/templates/terraform-drift.yml +++ b/modules/service-repo/templates/terraform-drift.yml @@ -74,7 +74,7 @@ jobs: - name: "Setup Python Environment" run: | - make bootstrap-ci + make bootstrap - name: "Terraform Init" run: |