summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorZachary Ware <zach@python.org>2024-11-20 19:20:44 (GMT)
committerGitHub <noreply@github.com>2024-11-20 19:20:44 (GMT)
commit0af4ec30bd2e3a52350344d1011c0c125d6dcd71 (patch)
treef9ba1f37a38a9639df06cc633e9040a3e69432cf /.github
parent2c9911abe6e07a96407fe52b2b12b6c694d1e7af (diff)
downloadcpython-0af4ec30bd2e3a52350344d1011c0c125d6dcd71.zip
cpython-0af4ec30bd2e3a52350344d1011c0c125d6dcd71.tar.gz
cpython-0af4ec30bd2e3a52350344d1011c0c125d6dcd71.tar.bz2
Run `apt update` before `apt install git` in autoconf CI job (GH-127066)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c854c13..1f2204d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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: