diff --git a/CHANGELOG.md b/CHANGELOG.md index 76be0a99b4..e158d0af09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th ## [UNRELEASED] +No user facing changes. + +## 4.37.0 - 08 Jul 2026 + - Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://github.com/github/codeql-action/pull/3995) +- In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://github.com/github/codeql-action/pull/3973) ## 4.36.3 - 01 Jul 2026 diff --git a/lib/entry-points.js b/lib/entry-points.js index e8ee3fc281..0fdc973651 100644 --- a/lib/entry-points.js +++ b/lib/entry-points.js @@ -145002,7 +145002,7 @@ function getDiffRangesJsonFilePath() { return path2.join(getTemporaryDirectory(), PR_DIFF_RANGE_JSON_FILENAME); } function getActionVersion() { - return "4.37.0"; + return "4.37.1"; } function getWorkflowEventName() { return getRequiredEnvParam("GITHUB_EVENT_NAME" /* GITHUB_EVENT_NAME */); diff --git a/package-lock.json b/package-lock.json index 83c1027a0a..83775deef8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "4.37.0", + "version": "4.37.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "4.37.0", + "version": "4.37.1", "license": "MIT", "workspaces": [ "pr-checks" diff --git a/package.json b/package.json index 2734c27f6a..46fb37e98f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "4.37.0", + "version": "4.37.1", "private": true, "description": "CodeQL action", "scripts": {