diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ce7496..b7a0ddf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,6 +43,13 @@ jobs: - thrimshim - zulip_bots steps: + - name: Install git + # the buildah/stable image doesn't include git + # actions/checkout works without git, but not if you do submodules + # thus, we install git + run: | + sudo dnf install -y git + - name: Check out repo uses: actions/checkout@v3 with: