From ec707643d6b01defcbf0e9cbf7f9ffd6453e2a8c Mon Sep 17 00:00:00 2001 From: Ronni Baslund Date: Wed, 10 Jun 2026 08:02:40 +0200 Subject: [PATCH] fix(ci): act_runner 0.2.11 -> gitea/runner 1.0.8 Gitea 1.26 never marked finished jobs complete with the deprecated act_runner 0.2.11: the runner ran the job, logged 'Job succeeded' and freed its slot, but Gitea kept the job 'Running' forever, so dependent jobs (build -> deploy) were never dispatched. gitea/runner is the successor project; config, env vars and the .runner registration file are unchanged. --- infrastructure/production/fleet/ci/gitea-runner.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/infrastructure/production/fleet/ci/gitea-runner.yaml b/infrastructure/production/fleet/ci/gitea-runner.yaml index ec694dd..36bef84 100644 --- a/infrastructure/production/fleet/ci/gitea-runner.yaml +++ b/infrastructure/production/fleet/ci/gitea-runner.yaml @@ -71,7 +71,12 @@ spec: spec: containers: - name: runner - image: gitea/act_runner:0.2.11 + # gitea/runner is the successor of the deprecated gitea/act_runner. + # act_runner 0.2.11 + Gitea 1.26 left finished jobs stuck "Running" — + # the runner completed and freed slots, but Gitea never registered the + # completion, so dependent jobs (build → deploy) were never dispatched. + # Same config format / env vars / .runner registration file. + image: gitea/runner:1.0.8 env: - name: GITEA_INSTANCE_URL value: https://git.lastcloud.io