From 7e51e5885654cefcea149a91db0a516c6d270245 Mon Sep 17 00:00:00 2001 From: Holger Obermaier <40787752+ho-ob@users.noreply.github.com> Date: Mon, 28 Feb 2022 15:50:10 +0100 Subject: [PATCH] Install git in AlmaLinux Image --- .github/workflows/AlmaLinux.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/AlmaLinux.yml b/.github/workflows/AlmaLinux.yml index b5904d6..22ed20d 100644 --- a/.github/workflows/AlmaLinux.yml +++ b/.github/workflows/AlmaLinux.yml @@ -16,6 +16,11 @@ jobs: runs-on: ubuntu-latest container: almalinux:8.5 steps: + + - name: Install GIT + run: | + yum -y install git + # See: https://github.com/marketplace/actions/checkout # Checkout git repository and submodules - name: Checkout