Skip to content

Commit c4dd10e

Browse files
authored
Merge pull request #4074 from github/backport-v3.37.6-5595ccaf9
Merge releases/v4 into releases/v3
2 parents e60ea98 + 2ba473f commit c4dd10e

5 files changed

Lines changed: 32 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
44

5+
## 3.37.6 - 04 Aug 2026
6+
7+
- Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://github.com/github/codeql-action/pull/4070)
8+
59
## 3.37.5 - 03 Aug 2026
610

711
- Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://github.com/github/codeql-action/pull/4061)

lib/entry-points.js

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "3.37.5",
3+
"version": "3.37.6",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {
@@ -39,7 +39,7 @@
3939
"follow-redirects": "^1.16.0",
4040
"get-folder-size": "^5.0.0",
4141
"https-proxy-agent": "^7.0.6",
42-
"js-yaml": "^5.2.1",
42+
"js-yaml": "^5.2.2",
4343
"jsonschema": "1.5.0",
4444
"long": "^5.3.2",
4545
"node-forge": "^1.4.0",

src/config/remote-file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface RemoteFileAddress {
1616
}
1717

1818
/** The default file path to use in configuration file shorthands. */
19-
export const DEFAULT_CONFIG_FILE_NAME = ".github/codeql-action.yaml";
19+
export const DEFAULT_CONFIG_FILE_NAME = ".github/codeql-config.yml";
2020

2121
/** The default ref to use in configuration file shorthands. */
2222
export const DEFAULT_CONFIG_FILE_REF = "main";

0 commit comments

Comments
 (0)