From ae2a67738621006cb9a9ce8002e18cc91b92b6e8 Mon Sep 17 00:00:00 2001 From: RAJVEER42 Date: Wed, 10 Jun 2026 01:16:06 +0530 Subject: [PATCH 1/2] Bump deprecated GitHub Actions to current major versions The flake8 and CodeQL workflows pinned actions to deprecated majors: - actions/checkout@v3 and actions/setup-python@v2 run on the end-of-life Node 16 runtime. - github/codeql-action@v2 (init/autobuild/analyze) is deprecated by GitHub. Bump to current majors with no behaviour change: - actions/checkout@v3 -> @v6 (matches tests.yml / run-test-suite.yml) - actions/setup-python@v2 -> @v6 - github/codeql-action/*@v2 -> @v3 --- .github/workflows/codeql.yml | 8 ++++---- .github/workflows/flake8.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 414bef0238f..dd63553eaaa 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -41,11 +41,11 @@ jobs: 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@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -59,7 +59,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, Go, 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 + uses: github/codeql-action/autobuild@v3 # â„šī¸ 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 @@ -72,6 +72,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index bba7c5511d5..4a5a0f44dfb 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -20,10 +20,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Set up Python ${{matrix.python-version}} - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 with: python-version: ${{matrix.python-version}} From a2a7dda5e3920adc63dc9c50947a006b5f396c79 Mon Sep 17 00:00:00 2001 From: RAJVEER42 Date: Mon, 22 Jun 2026 21:38:52 +0530 Subject: [PATCH 2/2] Add Valyrian-Code to the .clabot configuration --- .clabot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.clabot b/.clabot index 9a0b5f6c6a9..21fba1ef882 100644 --- a/.clabot +++ b/.clabot @@ -87,6 +87,7 @@ "F0rtiter", "nrjadkry", "jwkaltz", - "dsuren1" + "dsuren1", + "Valyrian-Code" ] }