Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/post-release-mergeback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
echo "::endgroup::"

- name: Generate token
uses: actions/create-github-app-token@v3.0.0
uses: actions/create-github-app-token@v2.2.1
id: app-token
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rollback-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Generate token
if: github.event_name == 'workflow_dispatch'
uses: actions/create-github-app-token@v3.0.0
uses: actions/create-github-app-token@v2.2.1
id: app-token
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
pull-requests: write # needed to create pull request
steps:
- name: Generate token
uses: actions/create-github-app-token@v3.0.0
uses: actions/create-github-app-token@v2.2.1
id: app-token
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
Expand Down
6 changes: 0 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

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

## 4.34.0 - 20 Mar 2026

- Added an experimental change which disables TRAP caching when [improved incremental analysis](https://github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://github.com/github/codeql-action/pull/3569)
- We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://github.com/github/codeql-action/pull/3584)
- Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://github.com/github/codeql-action/pull/3585)

## 4.33.0 - 16 Mar 2026

- Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. [#3562](https://github.com/github/codeql-action/pull/3562)
Expand Down
1,961 changes: 781 additions & 1,180 deletions lib/analyze-action-post.js

Large diffs are not rendered by default.

1,863 changes: 730 additions & 1,133 deletions lib/analyze-action.js

Large diffs are not rendered by default.

1,771 changes: 686 additions & 1,085 deletions lib/autobuild-action.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions lib/defaults.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.25.0",
"cliVersion": "2.25.0",
"priorBundleVersion": "codeql-bundle-v2.24.3",
"priorCliVersion": "2.24.3"
"bundleVersion": "codeql-bundle-v2.24.3",
"cliVersion": "2.24.3",
"priorBundleVersion": "codeql-bundle-v2.24.2",
"priorCliVersion": "2.24.2"
}
2,035 changes: 819 additions & 1,216 deletions lib/init-action-post.js

Large diffs are not rendered by default.

1,901 changes: 753 additions & 1,148 deletions lib/init-action.js

Large diffs are not rendered by default.

1,759 changes: 680 additions & 1,079 deletions lib/resolve-environment-action.js

Large diffs are not rendered by default.

1,775 changes: 687 additions & 1,088 deletions lib/setup-codeql-action.js

Large diffs are not rendered by default.

1,952 changes: 774 additions & 1,178 deletions lib/start-proxy-action-post.js

Large diffs are not rendered by default.

1,764 changes: 679 additions & 1,085 deletions lib/start-proxy-action.js

Large diffs are not rendered by default.

1,751 changes: 676 additions & 1,075 deletions lib/upload-lib.js

Large diffs are not rendered by default.

1,954 changes: 774 additions & 1,180 deletions lib/upload-sarif-action-post.js

Large diffs are not rendered by default.

1,787 changes: 695 additions & 1,092 deletions lib/upload-sarif-action.js

Large diffs are not rendered by default.

Loading
Loading