/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/codeql.yml
73 строки
2 KB
dependabot[bot]
build(deps): bump github/codeql-action/init from 4.36.0 to 4.37.0
09 июл 2026, 09:28
09 июл 2026, 09:28
8d4cbe8
Код
Авторство
О чём код?
--- # SPDX-License-Identifier: GPL-2.0-or-later name: CodeQL on: push: branches: [ "master" ] pull_request: # The branches below must be a subset of the branches above branches: [ "master" ] schedule: - cron: '24 2 * * 5' jobs: analyze: name: Analyze # Runner size impacts CodeQL analysis time. To learn more, please see: # - https://gh.io/recommended-hardware-resources-for-running-codeql # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners # Consider using larger runners for possible analysis time improvements. runs-on: 'ubuntu-latest' timeout-minutes: 360 permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'c-cpp', 'python' ] # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] # Use only 'java-kotlin' to analyze code written in Java, Kotlin or both # Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support steps: - name: Checkout repository uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Mark repo as safe for git run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Install build tools run: | sudo apt-get update sudo apt-get install meson # Initializes the CodeQL tools for scanning. - if: matrix.language == 'c-cpp' name: Initialize CodeQL C uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0 with: languages: 'c-cpp' - if: matrix.language == 'python' name: Initialize CodeQL Python uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0 with: languages: 'python' config-file: ./.github/codeql/codeql-config.yml - name: meson build run: | meson setup --force-fallback-for=json-c .build ninja -C .build - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0 with: category: "/language:${{matrix.language}}"