From d7cbe969fb759a6b7f554954799a909f659e99c1 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 23:56:41 +0000 Subject: [PATCH] fix(dual-approval): remove container: ubuntu:latest and Install dependencies step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ubuntu-latest runner host already has curl, jq, and ca-certificates pre-installed. The apt-get update call inside the Docker container was failing due to broken container networking on the runner host (runs 577, 578), blocking PR #182 (dev→uat promotion). Co-Authored-By: Paperclip --- .github/workflows/dual-approval.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/dual-approval.yaml b/.github/workflows/dual-approval.yaml index 4412e78..c77548e 100644 --- a/.github/workflows/dual-approval.yaml +++ b/.github/workflows/dual-approval.yaml @@ -15,13 +15,9 @@ jobs: promotion-gate: name: Promotion Gate runs-on: ubuntu-latest - container: ubuntu:latest timeout-minutes: 5 steps: - - name: Install dependencies - run: apt-get update -qq && apt-get install -y --no-install-recommends curl jq - - name: Check promotion approval env: GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}