diff options
-rw-r--r-- | .github/workflows/codeql.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c875499..9c2684b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,11 +38,16 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + - uses: actions/checkout@v3 + with: + submodules: true - - name: Install build dependency + - name: install build dependency run: sudo ./scripts/install-build-deps.sh + - name: patch to libssh + run: patch -d libssh -p1 < patch/libssh-0.10.4.patch + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 |