Skip to content

Commit

Permalink
[3.12] Run apt update before apt install git in autoconf CI job (p…
Browse files Browse the repository at this point in the history
…ythonGH-127071)

(cherry picked from commit 0af4ec3)

Co-authored-by: Zachary Ware <zach@python.org>
  • Loading branch information
miss-islington and zware authored Nov 20, 2024
1 parent b33c37a commit 512a5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 512a5bd

Please sign in to comment.