Bump deps/luajit from acb2234 to fed6d47
#125
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CodeQL | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '30 06 * * 6' | |
| jobs: | |
| analyze: | |
| name: analyze | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7.0.0 | |
| - name: Update submodule | |
| run: | | |
| git submodule update --init --recursive | |
| - name: Get deps | |
| run: | | |
| sudo apt-get install cmake | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: c-cpp | |
| build-mode: manual | |
| - name: Build | |
| run: | | |
| ./build.sh --release | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:c-cpp" |