From 408a8c28a913d058e6602292fb29ca0c9c04589b Mon Sep 17 00:00:00 2001 From: sickn33 Date: Tue, 7 Apr 2026 19:56:04 +0200 Subject: [PATCH] ci(codeql): Remove duplicate workflow --- .github/workflows/codeql-analysis.yml | 61 --------------------------- 1 file changed, 61 deletions(-) delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 0a06f7ab..00000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: CodeQL - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - schedule: - - cron: "23 4 * * 1" - workflow_dispatch: - -permissions: - actions: read - contents: read - security-events: write - -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - runs-on: ${{ matrix.runner }} - strategy: - fail-fast: false - matrix: - include: - - language: actions - build_mode: none - runner: ubuntu-latest - - language: go - build_mode: autobuild - runner: ubuntu-latest - - language: java-kotlin - build_mode: none - runner: ubuntu-latest - - language: javascript-typescript - build_mode: none - runner: ubuntu-latest - - language: python - build_mode: none - runner: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v5 - - # Swift and C# are intentionally omitted here. In this repository they only - # appear in shipped template assets, and default setup fails trying to treat - # those templates as buildable code. - - name: Initialize CodeQL - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build_mode }} - - - name: Autobuild - if: matrix.build_mode == 'autobuild' - uses: github/codeql-action/autobuild@v4 - - - name: Perform CodeQL analysis - uses: github/codeql-action/analyze@v4 - with: - category: /language:${{ matrix.language }}