From cb1b62a6840f234fc992f7bec6d743f09dd86673 Mon Sep 17 00:00:00 2001 From: Christophe Bornet Date: Sat, 11 Nov 2023 12:15:58 +0100 Subject: [PATCH] Fix CI build --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df33a53ec..4129be69c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,17 +10,17 @@ jobs: runs-on: ubuntu-latest steps: steps: - - name: Checkout the repo - uses: actions/checkout@v3 + - name: Checkout the repo + uses: actions/checkout@v3 - - name: Add SSH private keys for submodule repositories - uses: webfactory/ssh-agent@0.7.0 - with: - ssh-private-key: | - ${{ secrets.SSH_PRIVATE_KEY_LANGCHAIN_SUBMODULE }} + - name: Add SSH private keys for submodule repositories + uses: webfactory/ssh-agent@0.7.0 + with: + ssh-private-key: | + ${{ secrets.SSH_PRIVATE_KEY_LANGCHAIN_SUBMODULE }} - - name: Update submodules - run: git submodule update --init + - name: Update submodules + run: git submodule update --init - name: 'Setup: Python 3.11' uses: actions/setup-python@v4