mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-19 09:06:14 +00:00
codeql.yml (GitHub's Advanced Setup template) adapted for this repo: - Pin action SHAs (checkout v6.0.2, codeql-action v4.36.0) - Drop python from the language matrix (no Python in this repo) - Add conditional libpcap install for the Go matrix entry (gopacket requires libpcap-dev; autobuild fails without it) - Wire in .github/codeql-config.yml for Go (path filters, query selection); other languages get an empty config-file value - Remove boilerplate template comments and the unused manual-build step - Fix runner expression (no swift, so the macos-latest conditional is unnecessary; always ubuntu-latest) security.yml: - Remove codeql-analysis job (now handled by codeql.yml) - Drop codeql-analysis from security-summary needs, summary echo, and fail condition Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
name: "CodeQL Advanced"
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
schedule:
|
|
- cron: '36 6 * * 1'
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze (${{ matrix.language }})
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
security-events: write
|
|
packages: read
|
|
actions: read
|
|
contents: read
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- language: actions
|
|
build-mode: none
|
|
- language: go
|
|
build-mode: autobuild
|
|
- language: javascript-typescript
|
|
build-mode: none
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Install libpcap (required for Go build)
|
|
if: matrix.language == 'go'
|
|
run: sudo apt-get install -y libpcap-dev
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
build-mode: ${{ matrix.build-mode }}
|
|
config-file: ${{ matrix.language == 'go' && './.github/codeql-config.yml' || '' }}
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|