From 081ef63cc877440467e06532a1bf57f57c090665 Mon Sep 17 00:00:00 2001 From: Nick Cipollina Date: Wed, 9 Sep 2026 14:06:53 -0400 Subject: [PATCH] fix(ci): remove redundant jq install step Both workflows are hardcoded to runs-on: ubuntu-latest, which ships jq preinstalled. The unconditional apt-get update was pulling in the full apt source list (including Google's Chrome repo), which has been intermittently failing PR builds with a Hash Sum mismatch on chrome-stable's Packages.gz - unrelated to jq itself. Since these workflows never run on self-hosted runners, the step is unnecessary. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01LS7hWBvJ2wgLbhcSkpwnvZ --- .github/workflows/build-deploy.yaml | 4 ---- .github/workflows/pr-build.yaml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index e2a471b..6ccf61c 100644 --- a/.github/workflows/build-deploy.yaml +++ b/.github/workflows/build-deploy.yaml @@ -173,10 +173,6 @@ jobs: fi dotnet publish ${{ inputs.webPath }} --configuration ${{ inputs.buildConfiguration }} --no-restore --output ${{ env.outputPath }} -p:WasmApplicationEnvironmentName=$WASM_ENV - - name: Install jq - if: inputs.functions != '[]' || inputs.spaSites != '[]' - run: sudo apt-get update && sudo apt-get install -y jq - - name: Build and Package All Lambda Functions if: env.NEEDS_DOTNET == 'true' && inputs.functions != '[]' run: | diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index 1c5ee46..6b00084 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -243,10 +243,6 @@ jobs: if: env.NEEDS_DOTNET == 'true' && inputs.webPath != '' run: dotnet publish ${{ inputs.webPath }} --configuration "${{ inputs.buildConfiguration }}" --no-restore --output ${{ env.outputPath }} - - name: Install jq - if: inputs.functions != '[]' || inputs.spaSites != '[]' - run: sudo apt-get update && sudo apt-get install -y jq - - name: Build and Package All Lambda Functions if: env.NEEDS_DOTNET == 'true' && inputs.functions != '[]' run: |