]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Run `apt update` before `apt install git` in autoconf CI job (GH-127070)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 20 Nov 2024 19:44:17 +0000 (20:44 +0100)
committerGitHub <noreply@github.com>
Wed, 20 Nov 2024 19:44:17 +0000 (19:44 +0000)
(cherry picked from commit 0af4ec30bd2e3a52350344d1011c0c125d6dcd71)

Co-authored-by: Zachary Ware <zach@python.org>
.github/workflows/build.yml

index 19c59c53c99e141577a671d347185d7669a68f27..870931e5cbbbac5ea60204988aca6fdc514f216b 100644 (file)
@@ -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: