]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Run `apt update` before `apt install git` in autoconf CI job (GH-127066)
authorZachary Ware <zach@python.org>
Wed, 20 Nov 2024 19:20:44 +0000 (13:20 -0600)
committerGitHub <noreply@github.com>
Wed, 20 Nov 2024 19:20:44 +0000 (19:20 +0000)
.github/workflows/build.yml

index c854c13e12f922616fd1570cf60544589616af1f..1f2204d3f2c6febf8e697b72617179fd3eb5dd45 100644 (file)
@@ -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: