From 319b78d2e650333f0024dc77ec7962e1b2973a04 Mon Sep 17 00:00:00 2001 From: Pat Teruel Date: Tue, 30 Dec 2025 21:32:25 +0800 Subject: [PATCH] ci: update workflows to use 'linux' runner label - Change runs-on from ubuntu-latest to linux to match runner labels - Fixes workflow execution with thursday-macos runner --- .gitea/workflows/build.yml | 2 +- .gitea/workflows/pr-validation.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1d17952..091ef83 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -11,7 +11,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: linux steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/.gitea/workflows/pr-validation.yml b/.gitea/workflows/pr-validation.yml index 7a8d4cc..19bb62c 100644 --- a/.gitea/workflows/pr-validation.yml +++ b/.gitea/workflows/pr-validation.yml @@ -6,7 +6,7 @@ on: jobs: validate-pr-title: - runs-on: ubuntu-latest + runs-on: linux steps: - name: Validate PR title follows Conventional Commits run: | @@ -47,7 +47,7 @@ jobs: fi validate-docker: - runs-on: ubuntu-latest + runs-on: linux steps: - name: Checkout code uses: actions/checkout@v4 @@ -84,7 +84,7 @@ jobs: fi build-test: - runs-on: ubuntu-latest + runs-on: linux steps: - name: Checkout code uses: actions/checkout@v4 @@ -143,7 +143,7 @@ jobs: echo "✅ All container tests passed" check-files: - runs-on: ubuntu-latest + runs-on: linux steps: - name: Checkout code uses: actions/checkout@v4