From ec43b02ff2d409e3165923b43806996005144183 Mon Sep 17 00:00:00 2001 From: JonJagger Date: Sat, 1 Aug 2026 05:50:50 +0100 Subject: [PATCH] Run tf apply with -no-color Terraform appends a literal ESC[0m reset to "Apply complete!" even when its output is piped, so the raw escape ended up in the GitHub step summary, which grep-copies that line verbatim. Plan and show already pass -no-color; apply now matches. --- .github/workflows/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 97d8186..b1b8a8e 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -189,7 +189,7 @@ jobs: shell: bash if: inputs.tf_apply working-directory: ${{ inputs.working_directory }} - run: tf apply 2>&1 | tee /tmp/${{ inputs.environment }}.apply.txt + run: tf apply -no-color 2>&1 | tee /tmp/${{ inputs.environment }}.apply.txt - name: Apply summary if: inputs.tf_apply