aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/codeql.yml
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-13 18:26:01 +0100
committerGitHub <noreply@github.com>2023-02-13 18:26:01 +0100
commit9de9bd4bedde734e6b795e899e78b5417bc82fe4 (patch)
treef486737a97d61ac1ea9a3332dfb15302318ef894 /.github/workflows/codeql.yml
parentd359f7a533bdec9f9f4a51244fefc01064d8b9f9 (diff)
downloadrneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.tar.gz
rneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.tar.bz2
rneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.zip
ci: replace cmake script with bash script (#22246)
Bash has better error handling than cmake, and seem overall slightly more suited to scripting than cmake.
Diffstat (limited to '.github/workflows/codeql.yml')
-rw-r--r--.github/workflows/codeql.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index c4f4346de1..497a79d2d1 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v3
- name: Install dependencies
- run: cmake -P ./.github/scripts/install_dependencies.cmake
+ run: ./.github/scripts/install_deps.sh
- name: Initialize CodeQL
uses: github/codeql-action/init@v2