From 172d4632fe427b3e7d9120e1d98ef5e79c2925f7 Mon Sep 17 00:00:00 2001 From: appleboy Date: Mon, 28 Oct 2024 22:33:53 +0800 Subject: [PATCH] feat(actions): improve API robustness and testing coverage - Add `protocol` input with description and default value `tcp` Signed-off-by: appleboy --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index f167d81..2e658ca 100644 --- a/action.yml +++ b/action.yml @@ -11,6 +11,9 @@ inputs: description: "scp username" password: description: "scp password" + protocol: + description: "The IP protocol to use. Valid values are 'tcp'. 'tcp4' or 'tcp6'. Default to tcp." + default: "tcp" timeout: description: "timeout for ssh to remote host" default: "30s"