From 022c00cd17bcf49f47a34ff2e89ec72062b55502 Mon Sep 17 00:00:00 2001 From: Benjamin Boenisch Date: Sun, 15 Feb 2026 16:53:31 +0100 Subject: [PATCH] fix(ci): use docker runner label instead of ubuntu-latest The Gitea Actions runner on meghsakha uses label "docker". Co-Authored-By: Claude Sonnet 4.5 --- .gitea/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a9cbaca..298c6f7 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: # ======================================== go-lint: - runs-on: ubuntu-latest + runs-on: docker if: github.event_name == 'pull_request' container: golangci/golangci-lint:v1.55-alpine steps: @@ -32,7 +32,7 @@ jobs: fi python-lint: - runs-on: ubuntu-latest + runs-on: docker if: github.event_name == 'pull_request' container: python:3.12-slim steps: @@ -48,7 +48,7 @@ jobs: done nodejs-lint: - runs-on: ubuntu-latest + runs-on: docker if: github.event_name == 'pull_request' container: node:20-alpine steps: @@ -66,7 +66,7 @@ jobs: # ======================================== test-go-consent: - runs-on: ubuntu-latest + runs-on: docker container: golang:1.23-alpine env: CGO_ENABLED: "0" @@ -85,7 +85,7 @@ jobs: echo "Coverage: $COVERAGE" test-python-voice: - runs-on: ubuntu-latest + runs-on: docker container: python:3.12-slim env: CI: "true" @@ -104,7 +104,7 @@ jobs: python -m pytest tests/ -v --tb=short --ignore=tests/bqas test-bqas: - runs-on: ubuntu-latest + runs-on: docker container: python:3.12-slim env: CI: "true"