From 0af4ec30bd2e3a52350344d1011c0c125d6dcd71 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) --- .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 c854c13e12f..1f2204d3f2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,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: