diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-13 18:26:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 18:26:01 +0100 |
commit | 9de9bd4bedde734e6b795e899e78b5417bc82fe4 (patch) | |
tree | f486737a97d61ac1ea9a3332dfb15302318ef894 /.github/workflows/codeql.yml | |
parent | d359f7a533bdec9f9f4a51244fefc01064d8b9f9 (diff) | |
download | rneovim-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.yml | 2 |
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 |