From 8b5f5500ad10042a6a4df55121957727fd4c0338 Mon Sep 17 00:00:00 2001 From: TTMK7777 Date: Wed, 2 Sep 2026 11:07:47 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20codeql-action=20=E3=81=AE=20init=20?= =?UTF-8?q?=E3=81=A8=20analyze=20=E3=81=AE=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E4=B8=8D=E4=B8=80=E8=87=B4=E3=82=92=E8=A7=A3?= =?UTF-8?q?=E6=B6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit init が v4.37.9 (cdf488f, 2026-08-26) を指す一方、analyze だけ v4.37.7 (ff2f1c6, 2026-08-13) に取り残されており、2026-08-31 の run 3 本が "Loaded a configuration file for version '4.37.8', but running version '4.37.9'" で失敗していた。 init が書き出した設定ファイルを、異なるバージョンの analyze が読もうとして 拒否している。両者は同一リリースの SHA を指す必要がある。 analyze を init と同じ v4.37.9 (cdf488f) に揃える。v4.37.9 が現時点の最新。 Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01K26wUX9CiZCE2g2xxSbSwB --- .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 3270322..cede330 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -34,6 +34,6 @@ jobs: queries: security-extended - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 + uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 with: category: "/language:${{matrix.language}}"