Skip to content

Commit

Permalink
codeql.yml: do apt-get update before running install-build-deps.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
upa committed Nov 11, 2023
1 parent 9611b4d commit 8e8e1b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e8e1b9

Please sign in to comment.