codeql.yml: do apt-get update before running install-build-deps.sh

This commit is contained in:
Ryo Nakamura
2023-11-11 16:47:25 +09:00
parent 9611b4d077
commit 8e8e1b935d

View File

@@ -43,7 +43,9 @@ jobs:
submodules: true
- name: install build dependency
run: sudo ./scripts/install-build-deps.sh
run: |
sudo apt-get update
sudo ./scripts/install-build-deps.sh
- name: patch to libssh
run: patch -d libssh -p1 < patch/libssh-0.10.4.patch