Skip to content

Commit d1ba80a

Browse files
authored
Merge pull request #4067 from github/update-v4.37.5-1cd4d01d5
Merge main into releases/v4
2 parents f205ea1 + e74600b commit d1ba80a

27 files changed

Lines changed: 1168 additions & 596 deletions

.github/workflows/__job-run-uuid-sarif.yml

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

.github/workflows/__rubocop-multi-language.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/update-supported-enterprise-server-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3939
with:
4040
repository: github/enterprise-releases
41-
token: ${{ secrets.ENTERPRISE_RELEASE_TOKEN }}
41+
token: ${{ secrets.CODEQL_CI_ENTERPRISE_RELEASE_PAT }}
4242
path: ${{ github.workspace }}/enterprise-releases/
4343
sparse-checkout: releases.json
4444

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+
## 4.37.5 - 03 Aug 2026
6+
7+
- 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)
8+
59
## 4.37.4 - 29 Jul 2026
610

711
- This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://github.com/github/codeql-action/pull/4037)

lib/entry-points.js

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

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "4.37.4",
3+
"version": "4.37.5",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {
@@ -71,9 +71,9 @@
7171
"glob": "^13.0.6",
7272
"globals": "^17.7.0",
7373
"nock": "^14.0.16",
74-
"sinon": "^22.0.0",
74+
"sinon": "^22.1.0",
7575
"typescript": "^6.0.3",
76-
"typescript-eslint": "^8.64.0"
76+
"typescript-eslint": "^8.65.0"
7777
},
7878
"overrides": {
7979
"@actions/tool-cache": {

pr-checks/checks/job-run-uuid-sarif.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ steps:
2121
run: |
2222
cd "$RUNNER_TEMP/results"
2323
actual=$(jq -r '.runs[0].properties.jobRunUuid' javascript.sarif)
24-
if [[ "$actual" != "$JOB_RUN_UUID" ]]; then
25-
echo "Expected SARIF output to contain job run UUID '$JOB_RUN_UUID', but found '$actual'."
24+
if [[ "$actual" != "$CODEQL_ACTION_JOB_RUN_UUID" ]]; then
25+
echo "Expected SARIF output to contain job run UUID '$CODEQL_ACTION_JOB_RUN_UUID', but found '$actual'."
2626
exit 1
2727
else
2828
echo "Found job run UUID '$actual'."

pr-checks/checks/rubocop-multi-language.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ versions:
55
- default
66
steps:
77
- name: Set up Ruby
8-
uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600 # v1.319.0
8+
uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
99
with:
1010
ruby-version: 2.6
1111
- name: Install Code Scanning integration

0 commit comments

Comments
 (0)