From 4fedc61527e70d0f8097b3b7fbc2c9177736c412 Mon Sep 17 00:00:00 2001 From: lukasmittag Date: Fri, 13 Sep 2024 10:13:42 +0200 Subject: [PATCH] Fetch remote refs --- .github/workflows/kuksa-client.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kuksa-client.yml b/.github/workflows/kuksa-client.yml index 3a3a9d5..8a6f551 100644 --- a/.github/workflows/kuksa-client.yml +++ b/.github/workflows/kuksa-client.yml @@ -132,13 +132,15 @@ jobs: - name: Checkout kuksa-python-sdk uses: actions/checkout@v4 with: - submodules: recursive + submodules: 'true' - name: Install pip run: | python -m pip --quiet --no-input install --upgrade pip - name: Initiate submodules run: | - ls -R + cd submodules/kuksa-databroker + git fetch origin + cd ../.. git submodule update --remote --recursive - name: Install dependencies with pip run: |