We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4567ca commit 7bf0471Copy full SHA for 7bf0471
.github/workflows/main.yml
@@ -416,14 +416,15 @@ jobs:
416
run: apt -q update && apt -q -y install libc6-amd64 lib64stdc++6
417
- name: install git in container
418
run: |
419
+ git version
420
if [ -f /etc/alpine-release ]; then
421
apk update && apk add --no-cache git
422
elif [ -f /etc/almalinux-release ] || [ -f /etc/redhat-release ]; then
423
dnf -y install git
424
else
425
apt -q update && apt -q -y install git
426
fi
- git config --global --add safe.directory "$GITHUB_WORKSPACE"
427
428
- uses: actions/checkout@v4
429
- run: ci/install-dependencies.sh
430
- run: useradd builder --create-home
0 commit comments