From 69b278ad65f080335071ecc1a2a2535ee182e3d0 Mon Sep 17 00:00:00 2001 From: Mario Campos Date: Tue, 7 Oct 2025 10:11:06 -0500 Subject: [PATCH 1/2] Update CodeQL action versions to v4 in workflow configuration --- code-scanning/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code-scanning/codeql.yml b/code-scanning/codeql.yml index eeb0dce..c6b0d46 100644 --- a/code-scanning/codeql.yml +++ b/code-scanning/codeql.yml @@ -63,7 +63,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} @@ -91,6 +91,6 @@ jobs: exit 1 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" From 43f0e192265aa00b299d2f39ff83f1f6ba096193 Mon Sep 17 00:00:00 2001 From: Mario Campos Date: Thu, 9 Oct 2025 13:42:49 -0500 Subject: [PATCH 2/2] Add `name` to manual build step in CodeQL starter workflow --- code-scanning/codeql.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code-scanning/codeql.yml b/code-scanning/codeql.yml index c6b0d46..39d0d8e 100644 --- a/code-scanning/codeql.yml +++ b/code-scanning/codeql.yml @@ -80,7 +80,8 @@ jobs: # to build your code. # â„šī¸ 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: matrix.build-mode == 'manual' + - name: Run manual build steps + if: matrix.build-mode == 'manual' shell: bash run: | echo 'If you are using a "manual" build mode for one or more of the' \