From 97b688f95f79f3fb1d8005611327944e9cc42ed9 Mon Sep 17 00:00:00 2001 From: Rodin Date: Sat, 16 May 2026 01:48:55 +0000 Subject: [PATCH] ci: install jq in review-gate job to ensure JSON parsing succeeds --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 85bfc84..fddf158 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: runs-on: ubuntu-24.04 if: github.event_name == 'pull_request' steps: + - name: Install jq + run: sudo apt-get update && sudo apt-get install -y jq - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: @@ -31,6 +33,8 @@ jobs: allow_review: ${{ steps.gate.outputs.allow_review }} reason: ${{ steps.gate.outputs.reason }} steps: + - name: Install jq + run: sudo apt-get update && sudo apt-get install -y jq - name: Check self-review gate id: gate env: @@ -90,6 +94,8 @@ jobs: patterns_files: '.' system_prompt_file: SECURITY_REVIEW.md steps: + - name: Install jq + run: sudo apt-get update && sudo apt-get install -y jq - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: