From c6a919652f27ca49325d59320c2d4a1258ceb130 Mon Sep 17 00:00:00 2001 From: aminovfariz Date: Mon, 8 Jun 2026 09:10:48 +0200 Subject: [PATCH] fix(ci): install ripgrep in deploy workflow qa step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same fix as qa-required.yaml — css-contract-check.sh calls rg on the host runner, not inside Docker. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/deploy.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8d2023e..53dff7c 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -30,6 +30,9 @@ jobs: - name: Run DB migrations run: docker compose exec -T php php bin/console db:migrate + - name: Install ripgrep + run: sudo apt-get install -y ripgrep + - name: Run required QA gates run: bin/qa-required.sh