From 5c30895c0cc44e21212efe53e5f08bb84d74eed3 Mon Sep 17 00:00:00 2001 From: sriramveeraghanta Date: Mon, 20 Apr 2026 15:18:55 +0530 Subject: [PATCH 1/2] chore(ci): suppress CodeQL file coverage deprecation warning Explicitly opt into the new default behavior where CodeQL skips computing file coverage information on pull requests for improved analysis performance. --- .github/workflows/codeql.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a645c192ff3..686ca16fc7d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,6 +16,9 @@ jobs: contents: read security-events: write + env: + CODEQL_ACTION_FILE_COVERAGE_ON_PRS: false + strategy: fail-fast: false matrix: From 276e3fb5b13fcb192e10b727ac6138de86626fb7 Mon Sep 17 00:00:00 2001 From: sriram veeraghanta Date: Mon, 20 Apr 2026 15:37:16 +0530 Subject: [PATCH 2/2] Update .github/workflows/codeql.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 686ca16fc7d..9414b09008b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,7 +17,7 @@ jobs: security-events: write env: - CODEQL_ACTION_FILE_COVERAGE_ON_PRS: false + CODEQL_ACTION_FILE_COVERAGE_ON_PRS: "false" strategy: fail-fast: false