Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ jobs:
with:
secrets: |-
# As an environment variable:
KEY1=secret-key-1:latest
KEY1=projects/my-project/secrets/my-secret/versions/latest

# As a volume mount:
/secrets/api/key=secret-key-2:latest
/secrets/api/key=projects/my-project/secrets/my-secret/versions/123
```

This value will only be set if the input is a non-empty value. If a
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ inputs:
description: |-
The amount of memory available for the function to use. Allowed values are
of the format: <number><unit> with allowed units of "k", "M", "G", "Ki",
"Mi", "Gi" (e.g 128M, 10Mb, 1024Gib).
"Mi", "Gi" (e.g 128M, 10Mb, 1024Gi).

For all generations, the default value is 256MB of memory.
required: false
Expand Down Expand Up @@ -286,10 +286,10 @@ inputs:
with:
secrets: |-
# As an environment variable:
KEY1=secret-key-1:latest
KEY1=projects/my-project/secrets/my-secret/versions/latest

# As a volume mount:
/secrets/api/key=secret-key-2:latest
/secrets/api/key=projects/my-project/secrets/my-secret/versions/123
```

This value will only be set if the input is a non-empty value. If a
Expand Down
Loading