From ec73c81653cc0cc878e51aeab65a9a222e2c7a85 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Tue, 7 Oct 2025 11:16:56 +0200 Subject: [PATCH 1/2] merge --- .github/workflows/ci.yml | 33 ++++++++++++++++++++++++ .github/workflows/codeql.yml | 49 ------------------------------------ 2 files changed, 33 insertions(+), 49 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 443436e44..78936c310 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,6 +147,38 @@ jobs: permissions: contents: read + codeql: + name: Analyze (${{ matrix.language }}) + runs-on: ubuntu-latest + permissions: + security-events: write + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + include: + - language: actions + build-mode: none + + steps: + - name: Checkout repository + uses: actions/checkout@v5 + with: + persist-credentials: false + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" + ci-success: runs-on: ubuntu-latest if: always() @@ -159,6 +191,7 @@ jobs: - docs - fmt - deny + - codeql timeout-minutes: 30 steps: - name: Decide whether the needed jobs succeeded or failed diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index d60004ffd..000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: CodeQL - -permissions: {} - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - schedule: - - cron: "0 0 * * *" - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - runs-on: ubuntu-latest - permissions: - security-events: write - actions: read - contents: read - - strategy: - fail-fast: false - matrix: - include: - - language: actions - build-mode: none - - steps: - - name: Checkout repository - uses: actions/checkout@v5 - with: - persist-credentials: false - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" From 8a31687795e020e77074e1e22920c981db3b510b Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Tue, 7 Oct 2025 11:21:18 +0200 Subject: [PATCH 2/2] spacing --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78936c310..82043a264 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,26 +154,22 @@ jobs: security-events: write actions: read contents: read - strategy: fail-fast: false matrix: include: - language: actions build-mode: none - steps: - name: Checkout repository uses: actions/checkout@v5 with: persist-credentials: false - - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: