Skip to content

Commit 512a5bd

Browse files
[3.12] Run apt update before apt install git in autoconf CI job (GH-127071)
(cherry picked from commit 0af4ec3) Co-authored-by: Zachary Ware <[email protected]>
1 parent b33c37a commit 512a5bd

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
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
- name: Install Git
106106
run: |
107-
apt install git -yq
107+
apt update && apt install git -yq
108108
git config --global --add safe.directory "$GITHUB_WORKSPACE"
109109
- uses: actions/checkout@v4
110110
with:

0 commit comments

Comments
 (0)