From 6fe549e34e823abccf987d9be7e21d206fe41e31 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sat, 18 Jul 2026 13:24:26 +0200 Subject: [PATCH] [chore](trx-rs): run reuse lint directly instead of Docker action The host-executor runners have no Docker daemon, so fsfe/reuse-action (a Docker action) fails with "Cannot connect to the Docker daemon". Call the reuse CLI directly; it is baked into the runner image. Assisted-By: Claude Code (claude-opus-4) Claude-Session: https://claude.ai/code/session_01NFpGtGTWUEYXLwZeZs2RAV Signed-off-by: Stan Grams --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f797828d..a6b00419 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -103,4 +103,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: REUSE compliance - uses: fsfe/reuse-action@v5 + # `reuse` CLI instead of fsfe/reuse-action: the latter is a Docker + # action, which the host-executor runners cannot run. `reuse` is baked + # into the runner image (see container/Containerfile). + run: reuse lint