Skip to content

Commit

Permalink
Update docs (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo authored May 31, 2024
1 parent dc4a139 commit f127b80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ jobs:

- <a name="export_to_environment"></a><a href="#user-content-export_to_environment"><code>export_to_environment</code></a>: _(Optional)_ Make the fetched secrets additionally available as environment variables.

- <a name="encoding"></a><a href="#user-content-encoding"><code>encoding</code></a>: _(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
- <a name="encoding"></a><a href="#user-content-encoding"><code>encoding</code></a>: _(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).


Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit f127b80

Please sign in to comment.