Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ff0a06e

Browse filesBrowse files
authored
Merge pull request #2896 from github/update-v3.28.18-b86edfc27
Merge main into releases/v3
2 parents 60168ef + a41e084 commit ff0a06e
Copy full SHA for ff0a06e

File tree

207 files changed

+5316
-1052
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner

207 files changed

+5316
-1052
lines changed

‎.github/workflows/post-release-mergeback.yml

Copy file name to clipboardExpand all lines: .github/workflows/post-release-mergeback.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
--draft
169169
170170
- name: Generate token
171-
uses: actions/create-github-app-token@v2.0.2
171+
uses: actions/create-github-app-token@v2.0.6
172172
id: app-token
173173
with:
174174
app-id: ${{ vars.AUTOMATION_APP_ID }}

‎.github/workflows/update-release-branch.yml

Copy file name to clipboardExpand all lines: .github/workflows/update-release-branch.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
pull-requests: write # needed to create pull request
125125
steps:
126126
- name: Generate token
127-
uses: actions/create-github-app-token@v2.0.2
127+
uses: actions/create-github-app-token@v2.0.6
128128
id: app-token
129129
with:
130130
app-id: ${{ vars.AUTOMATION_APP_ID }}

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.28.18 - 16 May 2025
6+
7+
- Update default CodeQL bundle version to 2.21.3. [#2893](https://github.com/github/codeql-action/pull/2893)
8+
- Skip validating SARIF produced by CodeQL for improved performance. [#2894](https://github.com/github/codeql-action/pull/2894)
9+
- The number of threads and amount of RAM used by CodeQL can now be set via the `CODEQL_THREADS` and `CODEQL_RAM` runner environment variables. If set, these environment variables override the `threads` and `ram` inputs respectively. [#2891](https://github.com/github/codeql-action/pull/2891)
10+
511
## 3.28.17 - 02 May 2025
612

713
- Update default CodeQL bundle version to 2.21.2. [#2872](https://github.com/github/codeql-action/pull/2872)

‎README.md

Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,11 @@ We typically release new minor versions of the CodeQL Action and Bundle when a n
7070

7171
| Minimum CodeQL Action | Minimum CodeQL Bundle Version | GitHub Environment | Notes |
7272
|-----------------------|-------------------------------|--------------------|-------|
73-
| `v3.26.6` | `2.18.4` | Enterprise Server 3.15 | |
74-
| `v3.25.11` | `2.17.6` | Enterprise Server 3.14 | |
75-
| `v3.24.11` | `2.16.6` | Enterprise Server 3.13 | |
76-
| `v3.22.12` | `2.15.5` | Enterprise Server 3.12 | |
73+
| `v3.28.12` | `2.20.7` | Enterprise Server 3.17 | |
74+
| `v3.28.6` | `2.20.3` | Enterprise Server 3.16 | |
75+
| `v3.28.6` | `2.20.3` | Enterprise Server 3.15 | |
76+
| `v3.28.6` | `2.20.3` | Enterprise Server 3.14 | |
77+
| `v3.28.6` | `2.20.3` | Enterprise Server 3.13 | |
7778

7879
See the full list of GHES release and deprecation dates at [GitHub Enterprise Server releases](https://docs.github.com/en/enterprise-server/admin/all-releases#releases-of-github-enterprise-server).
7980

‎lib/analyze.js

Copy file name to clipboardExpand all lines: lib/analyze.js
+2-4Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/analyze.js.map

Copy file name to clipboardExpand all lines: lib/analyze.js.map
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/api-compatibility.json

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.17", "minimumVersion": "3.12" }
1+
{ "maximumVersion": "3.17", "minimumVersion": "3.13" }

‎lib/codeql.js

Copy file name to clipboardExpand all lines: lib/codeql.js
+3-3Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/defaults.json

Copy file name to clipboard
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-v2.21.2",
3-
"cliVersion": "2.21.2",
4-
"priorBundleVersion": "codeql-bundle-v2.21.1",
5-
"priorCliVersion": "2.21.1"
2+
"bundleVersion": "codeql-bundle-v2.21.3",
3+
"cliVersion": "2.21.3",
4+
"priorBundleVersion": "codeql-bundle-v2.21.2",
5+
"priorCliVersion": "2.21.2"
66
}

‎lib/init-action.js

Copy file name to clipboardExpand all lines: lib/init-action.js
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.