diff --git a/README.md b/README.md index 0c22789..37dfd77 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/action.yml b/action.yml index 9b131c9..c4f5de0 100644 --- a/action.yml +++ b/action.yml @@ -215,7 +215,7 @@ inputs: description: |- The amount of memory available for the function to use. Allowed values are of the format: 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 @@ -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