https://github.com/python/cpython/commit/512a5bdb2f409cc924214806d09cd266c36249cc commit: 512a5bdb2f409cc924214806d09cd266c36249cc branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: zware <[email protected]> date: 2024-11-20T19:37:24Z summary:
[3.12] Run `apt update` before `apt install git` in autoconf CI job (GH-127071) (cherry picked from commit 0af4ec30bd2e3a52350344d1011c0c125d6dcd71) Co-authored-by: Zachary Ware <[email protected]> files: M .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 329ebc42a301b4..f7f96ceb574cc0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -104,7 +104,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]
