Open ariandanim opened 6 days ago
Hey @ariandanim,
The error message you’re encountering:
No ED25519 host key is known for *** and you have requested strict checking.
Host key verification failed.
indicates that the SSH client cannot verify the server’s identity due to a missing or incorrect host key.
Possible Causes:
How to Solve:
- name: Run remote command via SSH
uses: D3rHase/ssh-command-action@latest
with:
host: ${{ secrets.HOST }}
port: ${{ secrets.PORT }}
user: ${{ secrets.USER }}
private_key: ${{ secrets.PRIVATE_KEY }}
command: echo 'Hello, World!'
I hope this helps! Feel free to reach out if you have further questions.
I have this code error when deploy