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)