From 441e769d67fa4874525c60a4306fdcd8b067ac9b Mon Sep 17 00:00:00 2001 From: Fedor Dikarev Date: Wed, 20 Nov 2024 15:12:03 +0100 Subject: [PATCH] submodule update --depth 1 --- .github/workflows/build-macos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 450ecc4277..ddbdd20626 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -59,7 +59,8 @@ jobs: - name: Checkout submodule vendor/postgres-${{ matrix.postgres-version }} run: | - git submodule update --init vendor/postgres-${{ matrix.postgres-version }} + git submodule init vendor/postgres-${{ matrix.postgres-version }} + git submodule update --depth 1 - name: Install build dependencies run: |