diff --git a/.github/workflows/deny.yml b/.github/workflows/deny.yml index 7d8df98..4008a59 100644 --- a/.github/workflows/deny.yml +++ b/.github/workflows/deny.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v4 - run: git config --global http.postBuffer 524288000 - run: git config --global http.sslVerify "false" - - run: git submodule update --init --recursive + - run: git submodule update --init --recursive --depth 1 - run: bash sh_script/pre-build.sh - uses: EmbarkStudios/cargo-deny-action@v1 with: diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 5d7a82e..aa585d8 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -25,7 +25,7 @@ jobs: run: | git config --global http.postBuffer 524288000 git config --global http.sslVerify "false" - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 # Install first since it's needed to build NASM - name: Install LLVM and Clang @@ -73,7 +73,7 @@ jobs: run: | git config --global http.postBuffer 524288000 git config --global http.sslVerify "false" - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 - name: Install toolchain with rustfmt available uses: actions-rs/toolchain@v1 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 73bfe94..16835c6 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -25,7 +25,7 @@ jobs: run: | git config --global http.postBuffer 524288000 git config --global http.sslVerify "false" - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 - name: Checkout sources - TDVF run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d1891c2..4a47a51 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: run: | git config --global http.postBuffer 524288000 git config --global http.sslVerify "false" - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 - name: Install LLVM and Clang uses: KyleMayes/install-llvm-action@v1 diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 05ec819..2ffe1a6 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -30,7 +30,7 @@ jobs: run: | git config --global http.postBuffer 524288000 git config --global http.sslVerify "false" - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 # Install first since it's needed to build NASM - name: Install LLVM and Clang