From 79e14ea87d1cadc6d25a0dc5a29d877729488220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=97=D0=B0=D0=B8=D0=B4=20=D0=9E=D0=BC=D0=B0=D1=80=20?= =?UTF-8?q?=D0=9C=D0=B5=D0=B4=D1=85=D0=B0=D1=82=20=7C=20Zaid=20Omar=20Medh?= =?UTF-8?q?at?= Date: Thu, 9 Jul 2026 12:33:58 +0500 Subject: [PATCH] ci: try ubuntu-latest runner (bundles docker CLI) Co-Authored-By: Claude Opus 4.8 (1M context) --- .forgejo/workflows/deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 3611133..4d72ffc 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -8,9 +8,10 @@ on: jobs: deploy: - # `docker` runner => node:22-bookworm image WITH the Docker socket available, - # so `docker build` / `docker run` control the host's Docker daemon. - runs-on: docker + # `ubuntu-latest` => catthehacker/ubuntu:act-22.04, which bundles the docker + # CLI. NOTE: it still needs the runner to mount /var/run/docker.sock for the + # daemon to be reachable — the image alone doesn't provide that. + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4