Skip to content

Commit 0af4ec3

Browse files
authored
Run apt update before apt install git in autoconf CI job (GH-127066)
1 parent 2c9911a commit 0af4ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- name: Install Git
5555
run: |
56-
apt install git -yq
56+
apt update && apt install git -yq
5757
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5858
- uses: actions/checkout@v4
5959
with:

0 commit comments

Comments
 (0)