From 82f5984631e01e8b18e268e598001b7134b9b304 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 22 Feb 2026 06:20:48 +0100 Subject: [PATCH] ci: use 'linux' runner label --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8dfb27c..1d4e645 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: gitleaks: - runs-on: linux:host + runs-on: linux container: image: ghcr.io/gitleaks/gitleaks:latest options: --entrypoint "" @@ -19,7 +19,7 @@ jobs: run: gitleaks detect --source . --verbose lint: - runs-on: linux:host + runs-on: linux container: image: python:3.13-alpine steps: @@ -30,7 +30,7 @@ jobs: run: ruff check src/ tests/ plugins/ test: - runs-on: linux:host + runs-on: linux needs: [lint] strategy: matrix: @@ -47,7 +47,7 @@ jobs: run: pytest -v build: - runs-on: linux:host + runs-on: linux if: github.event_name == 'push' && github.ref == 'refs/heads/master' needs: [gitleaks, test] steps: