fix: Upgrade drone-ssh from 1.8.2 to 1.8.3

The bundled drone-ssh v1.8.2 was causing deployment failures with
"Unexpected input(s) 'script_stop'" warnings and process exit code 128
during CI/CD runs. Upgrading to v1.8.3 resolves input validation
issues and improves SSH session stability.

Deployment was failing at the git fetch step with:
  "remote: Repository not found.
   fatal: Authentication failed for 'https://github.com/...'"
  Process exited with status 128

Updated DRONE_SSH_VERSION default from 1.8.2 to 1.8.3 in entrypoint.sh.
This commit is contained in:
Kirti Rauniyar 2026-04-17 15:43:48 +05:30 committed by GitHub
parent 90162d1e43
commit b8bed6e380
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ export GITHUB="true"
GITHUB_ACTION_PATH="${GITHUB_ACTION_PATH%/}" GITHUB_ACTION_PATH="${GITHUB_ACTION_PATH%/}"
DRONE_SSH_RELEASE_URL="${DRONE_SSH_RELEASE_URL:-https://github.com/appleboy/drone-ssh/releases/download}" DRONE_SSH_RELEASE_URL="${DRONE_SSH_RELEASE_URL:-https://github.com/appleboy/drone-ssh/releases/download}"
DRONE_SSH_VERSION="${DRONE_SSH_VERSION:-1.8.2}" DRONE_SSH_VERSION="${DRONE_SSH_VERSION:-1.8.3}"
# Error codes # Error codes
readonly ERR_UNKNOWN_PLATFORM=2 readonly ERR_UNKNOWN_PLATFORM=2