fix: remove stale RUNNER_DEFAULT_IMAGE_ENV fallback in manage_runner.sh
RUNNER_DEFAULT_IMAGE_ENV was never defined anywhere in the codebase. The nested default was dead code left from a prior refactor. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -137,7 +137,7 @@ parse_runner_entry() {
|
||||
# Sets RUNNER_RESOLVED_IMAGE.
|
||||
# ---------------------------------------------------------------------------
|
||||
resolve_runner_image() {
|
||||
local image="${RUNNER_DEFAULT_IMAGE:-${RUNNER_DEFAULT_IMAGE_ENV:-}}"
|
||||
local image="${RUNNER_DEFAULT_IMAGE:-}"
|
||||
if [[ -z "$image" ]] && [[ "$RUNNER_TYPE" == "docker" ]]; then
|
||||
image="${RUNNER_DEFAULT_IMAGE:-catthehacker/ubuntu:act-latest}"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user