From 75c8300d84f481b6380bb492bbd1e26446bec3ce Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Sun, 2 Aug 2026 14:14:12 +0200 Subject: [PATCH] fix(runner): Fixed wrong label. the right label for using the runner is ubuntu-docker-dind --- .gitea/workflows/quality-gate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/quality-gate.yml b/.gitea/workflows/quality-gate.yml index b733b26..880d9ca 100644 --- a/.gitea/workflows/quality-gate.yml +++ b/.gitea/workflows/quality-gate.yml @@ -8,7 +8,7 @@ on: jobs: lint-and-format: - runs-on: ubuntu-latest + runs-on: ubuntu-docker-dind steps: - uses: actions/checkout@v4 @@ -28,7 +28,7 @@ jobs: run: pnpm format:check changeset-check: - runs-on: ubuntu-latest + runs-on: ubuntu-docker-dind steps: - uses: actions/checkout@v4 with: @@ -48,7 +48,7 @@ jobs: run: pnpm changeset status --since=origin/dev unit-tests: - runs-on: ubuntu-latest + runs-on: ubuntu-docker-dind steps: - uses: actions/checkout@v4 @@ -65,7 +65,7 @@ jobs: run: pnpm test:unit component-tests: - runs-on: ubuntu-latest + runs-on: ubuntu-docker-dind steps: - uses: actions/checkout@v4