diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-24 23:05:45 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-24 23:05:45 +0900 |
commit | 5495e5dd61e6c35a721f6861c3a36364b3a2b909 (patch) | |
tree | f665c5b1f6e582cafc2d8d65c0b38b4e8ce3ea24 /.github | |
parent | 52fc2a71b04f5ca1bb94e7a5fa8b29d90f8c6b60 (diff) |
fix codeql.yml: init submodules and apply patch to libssh
Diffstat (limited to '.github')
-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 |