From f416aafe4326064125dac845600a1e1e3c1f4af1 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Wed, 15 Oct 2025 00:29:19 +0200 Subject: [PATCH] chore: configure CodeQL for Rust --- .github/workflows/code_ql.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_ql.yml b/.github/workflows/code_ql.yml index 134bbe6557d..2d01cf50155 100644 --- a/.github/workflows/code_ql.yml +++ b/.github/workflows/code_ql.yml @@ -11,14 +11,21 @@ name: code_ql - cron: '10 7 * * 1' jobs: - analyze_actions: - name: Analyze Actions + analyze: + name: Analyze runs-on: 'ubuntu-latest' permissions: actions: read contents: read security-events: write + strategy: + fail-fast: false + matrix: + language: + - actions + - rust + steps: - name: Checkout repository uses: actions/checkout@v5 @@ -26,10 +33,11 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: - languages: 'actions' + languages: ${{ matrix.language }} + build-mode: none - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: - category: "/language:actions" + category: "/language:${{matrix.language}}" ...