From 504dc476b1311c5c0d365c3703c2e888a563256c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 17 Dec 2022 19:00:16 +0100 Subject: [PATCH] Fix recursive clone in github actions --- .github/workflows/cmake.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ab65bba..e9b7831 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -19,9 +19,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - with: - submodules: recursive + - name: Checkout Repository + uses: actions/checkout@v2 + with: + submodules: recursive - name: Install system dependencies if: runner.os == 'Linux'