Skip to content

Commit 40b9b50

Browse files
[3.13] Run apt update before apt install git in autoconf CI job (pythonGH-127070)
(cherry picked from commit 0af4ec3) Co-authored-by: Zachary Ware <[email protected]>
1 parent fd9c2a3 commit 40b9b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
- name: Install Git
9898
run: |
99-
apt install git -yq
99+
apt update && apt install git -yq
100100
git config --global --add safe.directory "$GITHUB_WORKSPACE"
101101
- uses: actions/checkout@v4
102102
with:

0 commit comments

Comments
 (0)