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

This commit is contained in:
Zachary Ware 2024-11-20 13:20:44 -06:00 committed by GitHub
parent 2c9911abe6
commit 0af4ec30bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: