/
niceSOFT
/
libssh2
Обзор
Документация
Войти
/
niceSOFT
/
libssh2
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/codeql.yml
100 строк
3 KB
dependabot[bot]
GHA: bump GitHub Actions
02 авг 2026, 00:54
02 авг 2026, 00:54
2348358
Код
Авторство
О чём код?
# Copyright (C) The libssh2 project and its contributors. # # SPDX-License-Identifier: BSD-3-Clause name: 'CodeQL' 'on': push: branches: - master - '*/ci' pull_request: branches: - master - '*/ci' schedule: - cron: '0 0 * * 4' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} cancel-in-progress: true permissions: {} env: DO_NOT_TRACK: '1' HOMEBREW_NO_INSTALL_CLEANUP: '1' jobs: gha: if: ${{ github.repository_owner == 'libssh2' || github.event_name != 'schedule' }} name: 'GHA' runs-on: ubuntu-26.04 permissions: security-events: write # To create/update security events steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: 'initialize' uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3 with: languages: actions queries: security-extended - name: 'perform analysis' uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3 c: if: ${{ github.repository_owner == 'libssh2' || github.event_name != 'schedule' }} name: 'C' runs-on: ${{ matrix.platform == 'Linux' && 'ubuntu-26.04' || 'windows-2022' }} permissions: security-events: write # To create/update security events strategy: fail-fast: false matrix: platform: [Linux, Windows] env: MATRIX_PLATFORM: '${{ matrix.platform }}' steps: - name: 'install prereqs' if: ${{ matrix.platform == 'Linux' }} timeout-minutes: 5 run: | sudo find /etc/apt/sources.list.d -type f -not -name 'ubuntu.sources' -delete -print sudo apt-get -o Dpkg::Use-Pty=0 update sudo apt-get -o Dpkg::Use-Pty=0 install zlib1g-dev libssl-dev libgcrypt-dev libwolfssl-dev /home/linuxbrew/.linuxbrew/bin/brew install mbedtls@3 - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: 'initialize' uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3 with: languages: cpp build-mode: manual trap-caching: false - name: 'build' timeout-minutes: 5 shell: bash run: | if [ "${MATRIX_PLATFORM}" = 'Windows' ]; then cmake -B . -DCRYPTO_BACKEND=WinCNG -DCMAKE_VS_GLOBALS=TrackFileAccess=false cmake --build . --verbose else eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" export PKG_CONFIG_PATH; PKG_CONFIG_PATH="$(brew --prefix mbedtls@3)/lib/pkgconfig" for crypto in OpenSSL Libgcrypt mbedTLS wolfSSL; do cmake -B _bld-"${crypto}" -G Ninja -DCRYPTO_BACKEND="${crypto}" -DENABLE_ZLIB_COMPRESSION=ON cmake --build _bld-"${crypto}" --verbose done fi - name: 'perform analysis' uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3