docs: add cipher parameter

This commit is contained in:
Bo-Yi Wu 2020-05-24 13:13:09 +08:00
parent 1cb5cd31c9
commit 03b440e441
2 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,7 @@ See [action.yml](./action.yml) for more detailed information.
* envs - pass environment variable to shell script * envs - pass environment variable to shell script
* debug - enable debug mode * debug - enable debug mode
* use_insecure_cipher - include more ciphers with use_insecure_cipher (see [#56](https://github.com/appleboy/ssh-action/issues/56)) * use_insecure_cipher - include more ciphers with use_insecure_cipher (see [#56](https://github.com/appleboy/ssh-action/issues/56))
* cipher - the allowed cipher algorithms. If unspecified then a sensible
SSH Proxy Setting: SSH Proxy Setting:
@ -76,6 +77,7 @@ SSH Proxy Setting:
* proxy_key_path - path of ssh proxy private key * proxy_key_path - path of ssh proxy private key
* proxy_fingerprint - fingerprint SHA256 of the proxy host public key, default is to skip verification * proxy_fingerprint - fingerprint SHA256 of the proxy host public key, default is to skip verification
* proxy_use_insecure_cipher - include more ciphers with use_insecure_cipher (see [#56](https://github.com/appleboy/ssh-action/issues/56)) * proxy_use_insecure_cipher - include more ciphers with use_insecure_cipher (see [#56](https://github.com/appleboy/ssh-action/issues/56))
* proxy_cipher - the allowed cipher algorithms. If unspecified then a sensible
### Example ### Example

View File

@ -19,6 +19,8 @@ inputs:
use_insecure_cipher: use_insecure_cipher:
description: 'include more ciphers with use_insecure_cipher' description: 'include more ciphers with use_insecure_cipher'
default: false default: false
cipher:
description: 'the allowed cipher algorithms. If unspecified then a sensible'
timeout: timeout:
description: 'timeout for ssh to host' description: 'timeout for ssh to host'
default: "30s" default: "30s"
@ -51,6 +53,8 @@ inputs:
description: 'path of ssh proxy private key' description: 'path of ssh proxy private key'
proxy_fingerprint: proxy_fingerprint:
description: 'sha256 fingerprint of the proxy host public key' description: 'sha256 fingerprint of the proxy host public key'
proxy_cipher:
description: 'the allowed cipher algorithms. If unspecified then a sensible'
proxy_use_insecure_cipher: proxy_use_insecure_cipher:
description: 'include more ciphers with use_insecure_cipher' description: 'include more ciphers with use_insecure_cipher'
default: false default: false