From 5d9b28301aa2da961cf4d8ecf04d52ebef6ae8cb Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Tue, 23 Sep 2025 13:20:21 -0400 Subject: [PATCH] Fix plugin update github action truthiness check (#8814) (#8818) Co-authored-by: John-Michael Faircloth --- .github/workflows/plugin-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/plugin-update.yml b/.github/workflows/plugin-update.yml index e421a8e858..191a2cde13 100644 --- a/.github/workflows/plugin-update.yml +++ b/.github/workflows/plugin-update.yml @@ -56,13 +56,13 @@ jobs: git config user.name hc-github-team-secure-vault-ecosystem git config user.email hc-github-team-secure-vault-ecosystem@users.noreply.github.com - - if: ! inputs.ent-only + - if: inputs.ent-only != 'true' name: Update plugin run: | go get "github.com/hashicorp/${{ inputs.plugin }}@v${{ inputs.version }}" go mod tidy - - if: inputs.ent-only + - if: inputs.ent-only == 'true' name: Update Enterprise-only plugin run: | (cd vault_ent && go get "github.com/hashicorp/${{ inputs.plugin }}@v${{ inputs.version }}" && go mod tidy)