diff --git a/.github/workflows/build-arch.yml b/.github/workflows/build-arch.yml index e4c2da6..58a2a42 100644 --- a/.github/workflows/build-arch.yml +++ b/.github/workflows/build-arch.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - submodules: true + submodules: 'recursive' - name: Configure with CMake and Ninja run: | CC=clang CXX=clang++ cmake -B build -G Ninja \ diff --git a/.github/workflows/build-debian.yml b/.github/workflows/build-debian.yml index ba59570..a16a316 100644 --- a/.github/workflows/build-debian.yml +++ b/.github/workflows/build-debian.yml @@ -29,7 +29,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - submodules: true + submodules: 'recursive' - name: Configure with CMake and Ninja run: | CC=clang CXX=clang++ cmake -B build -G Ninja \ diff --git a/.github/workflows/build-fedora.yml b/.github/workflows/build-fedora.yml index 599f0b4..2ad5b74 100644 --- a/.github/workflows/build-fedora.yml +++ b/.github/workflows/build-fedora.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - submodules: true + submodules: 'recursive' - name: Configure with CMake and Ninja run: | CC=clang CXX=clang++ cmake -B build -G Ninja \ diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 92eaa05..f7c2a4a 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -22,7 +22,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - submodules: true + submodules: 'recursive' - name: Configure with CMake and Ninja run: | CC=clang CXX=clang++ cmake -B build -G Ninja \