From 4127ae42fb4d2a5309ae03e39b9d69c967671e9a Mon Sep 17 00:00:00 2001 From: laansdole Date: Sun, 8 Feb 2026 10:43:31 +0700 Subject: [PATCH 1/2] fix: missing system dependencies install in gha --- .github/workflows/validate-yamls.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/validate-yamls.yml b/.github/workflows/validate-yamls.yml index cde6d64b4..9c6f634af 100644 --- a/.github/workflows/validate-yamls.yml +++ b/.github/workflows/validate-yamls.yml @@ -33,6 +33,11 @@ jobs: with: python-version: '3.12' + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y libcairo2-dev pkg-config + - name: Install uv uses: astral-sh/setup-uv@v4 with: From e0890eec686bdae31b8807c7d00e6ca4667aa414 Mon Sep 17 00:00:00 2001 From: laansdole Date: Sun, 8 Feb 2026 10:46:03 +0700 Subject: [PATCH 2/2] chores: refactor gha name --- .github/workflows/validate-yamls.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/validate-yamls.yml b/.github/workflows/validate-yamls.yml index 9c6f634af..70141d4a6 100644 --- a/.github/workflows/validate-yamls.yml +++ b/.github/workflows/validate-yamls.yml @@ -20,8 +20,7 @@ on: workflow_dispatch: jobs: - validate: - name: Validate YAML Configuration Files + validate-yamls: runs-on: ubuntu-latest steps: