diff options
| author | Ryo Nakamura <upa@haeena.net> | 2023-11-11 16:47:25 +0900 |
|---|---|---|
| committer | Ryo Nakamura <upa@haeena.net> | 2023-11-11 16:47:25 +0900 |
| commit | 8e8e1b935d0b8c5b7b273e4ed8facec7a1121a99 (patch) | |
| tree | 8cbd0bdf71242ebe2b58acbf23e00740ec8cdc69 | |
| parent | 9611b4d0772c74a34a4eca35106e12aaf4d50701 (diff) | |
codeql.yml: do apt-get update before running install-build-deps.sh
| -rw-r--r-- | .github/workflows/codeql.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4db6e9f..86abd3d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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 |
