There was no default for the new decrypt: parameter.
When this action was run, if decrypt was not specified, it was passed through as decrypt=None
In the code this caused problems, because it had a default of decrypt=False, but this was overridden by default=None. This then caused execution failures.
This change sets the default in the action metadata.
There was no default for the new
decrypt:
parameter.When this action was run, if
decrypt
was not specified, it was passed through asdecrypt=None
In the code this caused problems, because it had a default of
decrypt=False
, but this was overridden bydefault=None
. This then caused execution failures.This change sets the default in the action metadata.