From 73567be4ed8087c7a4c831f267171f6b5ecc0fd5 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Wed, 20 Nov 2024 13:20:44 -0600 Subject: [PATCH] Run `apt update` before `apt install git` in autoconf CI job (GH-127066) (cherry picked from commit 0af4ec30bd2e3a52350344d1011c0c125d6dcd71) Co-authored-by: Zachary Ware --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 329ebc42a301b4..f7f96ceb574cc0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -104,7 +104,7 @@ jobs: steps: - name: Install Git run: | - apt install git -yq + apt update && apt install git -yq git config --global --add safe.directory "$GITHUB_WORKSPACE" - uses: actions/checkout@v4 with: