From 9fd7834b6261f5cc07ecf740ed926eefaf159aa8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 May 2026 12:38:44 +0000 Subject: [PATCH] fix(ci): set explicit python-version in codeql workflow Agent-Logs-Url: https://github.com/parkcheolhong/codeAI/sessions/4ea2a28e-7f09-4b9d-a3df-785939fa43ac Co-authored-by: parkcheolhong <111139476+parkcheolhong@users.noreply.github.com> --- .github/workflows/codeql.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 239520b..4357ddc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,6 +32,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 + - name: Setup Python + if: matrix.language == 'python' + uses: actions/setup-python@v6 + with: + python-version: '3.13' + - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: