From 3c8a3c637805abb93917111e2807ec2ee1362980 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 07:09:31 +0000 Subject: [PATCH 1/2] Initial plan From c4d6c0f70b1400e33300dc78c636a2e402ab5637 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 07:11:22 +0000 Subject: [PATCH 2/2] Fix CodeQL workflow to use windows-latest for C# analysis Co-authored-by: shibayan <1356444+shibayan@users.noreply.github.com> --- .github/workflows/codeql.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 97e5dd7..2fda2f0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -11,7 +11,7 @@ on: jobs: analyze: name: Analyze (${{ matrix.language }}) - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + runs-on: ${{ matrix.os }} permissions: security-events: write packages: read @@ -23,8 +23,10 @@ jobs: include: - language: actions build-mode: none + os: ubuntu-latest - language: csharp build-mode: autobuild + os: windows-latest steps: - name: Checkout repository uses: actions/checkout@v4