From 2c22263f9c116103b13de1e8296bab6485df51c9 Mon Sep 17 00:00:00 2001 From: Steven Date: Sat, 6 Dec 2025 22:33:01 +0100 Subject: [PATCH] fix: regression - using echo instead of printf again #90 It was found via #90 and #89 that using printf causes problems. In the previous version 7.1.0 we used echo instead of printf - hence we are bringing this back for version 8.0.x --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3ad0a96..d7dceec 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -17,7 +17,7 @@ source hosts-init # Start the SSH agent and load key. source agent-start "$GITHUB_ACTION" -printf '%s' "$INPUT_REMOTE_KEY" | SSH_PASS="${INPUT_REMOTE_KEY_PASS}" agent-add >/dev/null 2>&1 +echo "$INPUT_REMOTE_KEY" | SSH_PASS="$INPUT_REMOTE_KEY_PASS" agent-add # Variables. LEGACY_RSA_HOSTKEYS=""