From 16b3703c0a0141e71e05af5054f16a908a0b0093 Mon Sep 17 00:00:00 2001 From: Rodrigo Borba Date: Sun, 25 Jan 2026 14:14:10 -0300 Subject: [PATCH] =?UTF-8?q?chore:=20Remove=20as=20instala=C3=A7=C3=B5es=20?= =?UTF-8?q?de=20`jq`=20do=20workflow=20`deploy=5Fcheck`=20e=20de=20`postgr?= =?UTF-8?q?esql-client`=20do=20workflow=20`run=5Ffoss=5Fspec`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy_check.yml | 2 -- .github/workflows/run_foss_spec.yml | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/deploy_check.yml b/.github/workflows/deploy_check.yml index ba9b28c..99d2375 100755 --- a/.github/workflows/deploy_check.yml +++ b/.github/workflows/deploy_check.yml @@ -16,8 +16,6 @@ jobs: name: Check Deployment runs-on: [self-hosted, oracle-arm] steps: - - name: Install jq - run: sudo apt-get install -y jq - name: Print Deployment URL run: echo "https://chatwoot-pr-${{ github.event.pull_request.number }}.herokuapp.com" - name: Check Deployment Status diff --git a/.github/workflows/run_foss_spec.yml b/.github/workflows/run_foss_spec.yml index 2b47788..816cc08 100755 --- a/.github/workflows/run_foss_spec.yml +++ b/.github/workflows/run_foss_spec.yml @@ -73,7 +73,6 @@ jobs: - name: Wait for services run: | echo "Waiting for services to be ready..." - sudo apt-get update && sudo apt-get install -y postgresql-client attempt=0 until pg_isready -h localhost -p $POSTGRES_PORT || [ $attempt -eq 5 ]; do sleep 2