From e9f72e6ef0d7fdf63e2a406b0aa9134e5eb1cfc0 Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 15:25:56 +0000 Subject: [PATCH] fix: use GITHUB_ACTION variable for SSH agent start in entrypoint script --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index a45a46f..b24f0dc 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -16,7 +16,7 @@ source ssh-init source hosts-init # Start the SSH agent and load key. -source agent-start default +source agent-start "$GITHUB_ACTION" printf '%s' "$INPUT_REMOTE_KEY" | SSH_PASS="${INPUT_REMOTE_KEY_PASS}" agent-add >/dev/null 2>&1 # Variables.