From f127b806b7c7b6ee30c5a525a6fe60c40f755f83 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Fri, 31 May 2024 16:35:51 -0400 Subject: [PATCH] Update docs (#296) --- README.md | 10 +++++----- action.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f00c4b2..40b4f07 100644 --- a/README.md +++ b/README.md @@ -96,11 +96,11 @@ jobs: - export_to_environment: _(Optional)_ Make the fetched secrets additionally available as environment variables. -- encoding: _(Optional, default: `utf8`)_ Encoding in which secrets will be exported into environment variables. For - secrets that cannot be represented in text, such as encryption key bytes, - choose an encoding that has a safe character set for environment variable - values like `base64` or `hex`. For more information about available - encoding types, please see the [Node.js Buffer and character +- encoding: _(Optional, default: `utf8`)_ Encoding in which secrets will be exported into outputs (and environment + variables if `export_to_environment` is true). For secrets that cannot be + represented in text, such as encryption key bytes, choose an encoding that + has a safe character such as `base64` or `hex`. For more information about + available encoding types, please see the [Node.js Buffer and character encodings](https://nodejs.org/docs/latest/api/buffer.html#buffers-and-character-encodings). diff --git a/action.yml b/action.yml index 266f2d3..d5d4147 100644 --- a/action.yml +++ b/action.yml @@ -67,11 +67,11 @@ inputs: encoding: description: |- - Encoding in which secrets will be exported into environment variables. For - secrets that cannot be represented in text, such as encryption key bytes, - choose an encoding that has a safe character set for environment variable - values like `base64` or `hex`. For more information about available - encoding types, please see the [Node.js Buffer and character + Encoding in which secrets will be exported into outputs (and environment + variables if `export_to_environment` is true). For secrets that cannot be + represented in text, such as encryption key bytes, choose an encoding that + has a safe character such as `base64` or `hex`. For more information about + available encoding types, please see the [Node.js Buffer and character encodings](https://nodejs.org/docs/latest/api/buffer.html#buffers-and-character-encodings). required: false default: 'utf8'