From 51848826d309d03831efa2b9ca5492aef68566a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Sep 2026 02:33:01 +0000 Subject: [PATCH 1/2] chore(deps): Bump github/codeql-action/analyze from 4.37.9 to 4.38.0 Bumps [github/codeql-action/analyze](https://github.com/github/codeql-action) from 4.37.9 to 4.38.0. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/cdf488f595d80d6e07e03d4674febd5ab45fa938...b96794f015dfd88f77b49b1c93e0fa7110f94c63) --- updated-dependencies: - dependency-name: github/codeql-action/analyze dependency-version: 4.38.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .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 c6047630..1e81327a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,6 +40,6 @@ jobs: - '**/data/**' - '**/*.json' - - uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 + - uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 with: category: "/language:python" From 884eb6128bd87303bbdab4ba58a9f221d08b6774 Mon Sep 17 00:00:00 2001 From: Dan Wolfson Date: Wed, 16 Sep 2026 11:20:13 -0500 Subject: [PATCH 2/2] fix(ci): keep codeql-action init/analyze on matching versions Dependabot only bumped the analyze step's SHA to v4.38.0 -- init was left pinned at v4.37.9, since GitHub's dependency graph tracks each `uses:` line as a separate dependency and doesn't know these two need to move together. CodeQL enforces that all codeql-action steps in a workflow run the same version and fails the analyze post-action step otherwise ("Loaded a configuration file for version '4.37.9', but running version '4.38.0'"). Bump init to the same v4.38.0 SHA as analyze. Signed-off-by: Dan Wolfson Co-Authored-By: Claude Sonnet 5 Signed-off-by: Dan Wolfson --- .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 1e81327a..bde7760d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 + - uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 with: languages: python # Scoped to real package source -- excludes vendored/generated