From 166100bd2a31dc1311ff357958f55f8119998882 Mon Sep 17 00:00:00 2001 From: John-Michael Faircloth Date: Thu, 8 Jun 2023 10:31:49 -0500 Subject: [PATCH] fix warning about outputToken being an unexpected input (#461) --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 6f1d26e..94d358e 100644 --- a/action.yml +++ b/action.yml @@ -56,6 +56,10 @@ inputs: description: 'Whether or not export Vault token as environment variables.' default: 'false' required: false + outputToken: + description: 'Whether or not to set the `vault_token` output to contain the Vault token after authentication.' + default: 'false' + required: false caCertificate: description: 'Base64 encoded CA certificate to verify the Vault server certificate.' required: false