From 630dd1ba313ca1546b3d42026141628539c03c42 Mon Sep 17 00:00:00 2001 From: Jonathan Poltak Samosir Date: Thu, 8 Feb 2024 15:16:37 +0700 Subject: [PATCH] Remove --remote from git submodule update cmd - Seems to be the reason it's checking out the wrong submodule commits --- .github/workflows/ci-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-checks.yaml b/.github/workflows/ci-checks.yaml index 394f9f9340..77669452db 100644 --- a/.github/workflows/ci-checks.yaml +++ b/.github/workflows/ci-checks.yaml @@ -20,7 +20,7 @@ jobs: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Pull submodules - run: git submodule update --init --recursive --remote --checkout + run: git submodule update --init --recursive - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4