From 3eb69f87b43d1ee2087dafa8d6dbc4607fd921d9 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 3 Sep 2026 23:33:10 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20Re-enable=20and=20modernize?= =?UTF-8?q?=20CodeQL=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub disabled the scheduled CodeQL workflow after 60 days of repo inactivity, so code scanning results went stale after May 2026. The workflow has been re-enabled via the API; this also bumps the actions off the retired codeql-action@v2 / checkout@v3, drops the no-op Autobuild step (Python needs no build), and adds workflow_dispatch so a scan can be triggered by hand. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/codeql-analysis.yml | 49 +++++---------------------- 1 file changed, 8 insertions(+), 41 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 952e1105..e717c16d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,24 +1,14 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# name: "CodeQL" on: push: branches: ["main", "v1"] pull_request: - # The branches below must be a subset of the branches above branches: ["main", "v1"] schedule: - - cron: '25 22 * * 1' + - cron: '25 22 * * 1' + # Manual trigger, e.g. to refresh stale results. + workflow_dispatch: jobs: analyze: @@ -33,40 +23,17 @@ jobs: fail-fast: false matrix: language: ['python'] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] - # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - - # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality - - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - # â„šī¸ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - # If the Autobuild fails above, remove it and uncomment the following three lines. - # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. - - # - run: | - # echo "Run, Build Application using script" - # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v4 + with: + category: "/language:${{ matrix.language }}" From 7249ee58107687f10dcdac541634cbaf94637032 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 3 Sep 2026 23:33:59 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20YAML=20list=20indentat?= =?UTF-8?q?ion=20in=20CodeQL=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5.1 --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e717c16d..900282f1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -6,7 +6,7 @@ on: pull_request: branches: ["main", "v1"] schedule: - - cron: '25 22 * * 1' + - cron: '25 22 * * 1' # Manual trigger, e.g. to refresh stale results. workflow_dispatch: