From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 20 Nov 2024 19:44:17 +0000 (+0100) Subject: [3.13] Run `apt update` before `apt install git` in autoconf CI job (GH-127070) X-Git-Tag: v3.13.1~79 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40b9b506fb88c5cb6d36617015d74b2cf21da43d;p=thirdparty%2FPython%2Fcpython.git [3.13] Run `apt update` before `apt install git` in autoconf CI job (GH-127070) (cherry picked from commit 0af4ec30bd2e3a52350344d1011c0c125d6dcd71) Co-authored-by: Zachary Ware --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 19c59c53c99e..870931e5cbbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,7 +96,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: