https://github.com/python/cpython/commit/0af4ec30bd2e3a52350344d1011c0c125d6dcd71
commit: 0af4ec30bd2e3a52350344d1011c0c125d6dcd71
branch: main
author: Zachary Ware <[email protected]>
committer: zware <[email protected]>
date: 2024-11-20T19:20:44Z
summary:

Run `apt update` before `apt install git` in autoconf CI job (GH-127066)

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c854c13e12f922..1f2204d3f2c6fe 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:

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to