jnstockley/GitHub SSH Action
Run SSH commands against a remote host.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| host | SSH host to connect to. | yes | — |
| username | SSH username. | yes | — |
| port | SSH port. | no | 22 |
| password | SSH password (for password auth). | no | — |
| private_key | SSH private key (for key auth). | no | — |
| private_key_passphrase | Passphrase for the SSH private key. | no | — |
| command | Command(s) to execute on the remote host. Provide a single line or a multiline list. | yes | — |
Outputs
| name | description |
|---|---|
| stdout | Standard output from the remote command. |
| stderr | Standard error from the remote command. |
| exit_code | Exit code from the remote command. |