From 94263dc03c29069ab5a45e24cbbefc01ef8eee77 Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 5 Jun 2026 17:08:23 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Document=20auto-detected=20arch?= =?UTF-8?q?=20runner=20labels=20in=20README=20=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add runner labels table showing what gets registered per architecture, and clarify that all jobs run in containers (no host execution). Document full language image label list available on both arches. - README.md: add runner labels table and arch auto-detection note README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3d510d6..3f1101e 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,15 @@ networks: | `RUNNER_CONFIG_NAME` | `act_runner.yaml` | Runner config filename inside `RUNNER_DEFAULT_HOME` | | `ACT_RUNNER_FALLBACK_VERSION` | `v1.0.8` | Pinned act\_runner version used if gitea.com is unreachable during build | +**Runner labels** are set automatically based on the host architecture. All jobs run inside Docker containers — no bare-metal execution. + +| Host arch | Labels registered | +|-----------|------------------| +| `x86_64` | `amd64:docker://ubuntu:latest`, `linux:docker://ubuntu:latest`, `linux/amd64:docker://ubuntu:latest`, + language images | +| `aarch64` | `arm64:docker://ubuntu:latest`, `linux:docker://ubuntu:latest`, `linux/arm64:docker://ubuntu:latest`, + language images | + +Language image labels available on both architectures: `node` (14/16/18/20/22/latest), `perl`, `ruby`, `python`/`python3`, `php`/`php7`/`php8`, `alpine`, `debian`, `ubuntu`, `almalinux`/`rhel`/`redhat`, `ubuntu-latest`. + ### Volumes | Path | Purpose |