From 4e46e00f2956184a32277f18d7501fea90a602a0 Mon Sep 17 00:00:00 2001 From: Kentaro Wada Date: Thu, 16 Jul 2020 16:01:06 +0100 Subject: [PATCH] Use actions/checkout@v2 in ci.yml --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 187d1b9..0f145f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,18 +28,15 @@ jobs: PYTEST_QT_API: pyqt4v2 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + with: + submodules: true - uses: goanpeca/setup-miniconda@v1 with: auto-update-conda: true python-version: ${{ matrix.python-version }} - - name: Update submodules - shell: bash -l {0} - run: | - git submodule update --init --recursive - - name: Install system dependencies shell: bash -l {0} run: | -- GitLab