From 3d6283383a5f782097c1ec491e9087a798c72695 Mon Sep 17 00:00:00 2001 From: Aly Sewelam Date: Sun, 14 Sep 2025 11:26:31 +0300 Subject: [PATCH] fix: never trust lying machines --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f0ff5bd..e7ad106 100644 --- a/action.yml +++ b/action.yml @@ -74,7 +74,7 @@ runs: - name: Deploy services via SSH run: | ssh -o StrictHostKeyChecking=yes \ - -o UserKnownHostsFile= ~/.ssh/known_hosts \ + -o UserKnownHostsFile=~/.ssh/known_hosts \ -i ~/.ssh/id_rsa \ "${REMOTE_USER}@${REMOTE_HOST}" \ cd "$(dirname "${DEPLOYMENT_PATH}")" \