From aa27fb97459080b606927d9dbc6a6257d4eda0c1 Mon Sep 17 00:00:00 2001 From: Dalton Messmer Date: Fri, 8 Dec 2023 01:01:42 -0500 Subject: [PATCH] Work around old git version in container --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9477337af8b..d1ec60cfd07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,9 +20,8 @@ jobs: steps: - name: Check out uses: actions/checkout@v3 - with: - fetch-depth: 0 - submodules: recursive + - name: Check out submodules + run: git submodule update --init --recursive - name: Install dependencies run: > sudo dpkg --add-architecture i386 &&