Skip to content

Commit

Permalink
Run apt update before apt install git in autoconf CI job (pythonG…
Browse files Browse the repository at this point in the history
  • Loading branch information
zware authored Nov 20, 2024
1 parent 2c9911a commit 0af4ec3
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 @@ -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:
Expand Down

0 comments on commit 0af4ec3

Please sign in to comment.