mirror of https://github.com/python/cpython
Run `apt update` before `apt install git` in autoconf CI job (GH-127066)
This commit is contained in:
parent
2c9911abe6
commit
0af4ec30bd
|
@ -53,7 +53,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install Git
|
- name: Install Git
|
||||||
run: |
|
run: |
|
||||||
apt install git -yq
|
apt update && apt install git -yq
|
||||||
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue