diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-12 22:09:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-12 22:09:10 +0100 |
| commit | 5d3769ea2343a30c60963011bef85346320bd97c (patch) | |
| tree | 7cbdecd8195dba423391d81f2efbf2021fd04434 /.github/workflows/codeql.yml | |
| parent | 5f72ab77bff1f1224be5cbbf9423bdddbc25635c (diff) | |
| download | rneovim-5d3769ea2343a30c60963011bef85346320bd97c.tar.gz rneovim-5d3769ea2343a30c60963011bef85346320bd97c.tar.bz2 rneovim-5d3769ea2343a30c60963011bef85346320bd97c.zip | |
ci: install dependencies with a single script (#22241)
It's easier if the os-specific installations are done by the script itself
Diffstat (limited to '.github/workflows/codeql.yml')
| -rw-r--r-- | .github/workflows/codeql.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 657ace20fd..c4f4346de1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,8 +17,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Install apt packages - run: ./.github/scripts/install_deps_ubuntu.sh + - name: Install dependencies + run: cmake -P ./.github/scripts/install_dependencies.cmake - name: Initialize CodeQL uses: github/codeql-action/init@v2 |