Skip to content

Commit 8a93837

Browse files
authored
Merge pull request #2645 from github/update-v3.27.8-9cfbef4bd
Merge main into releases/v3
2 parents babb554 + 90a2700 commit 8a93837

File tree

245 files changed

+32660
-1483
lines changed

Some content is hidden

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

245 files changed

+32660
-1483
lines changed

.github/workflows/__test-proxy.yml

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+8-1
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,18 @@ jobs:
162162
--assignee "${GITHUB_ACTOR}" \
163163
--draft
164164
165+
- name: Generate token
166+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69
167+
id: app-token
168+
with:
169+
app-id: ${{ vars.AUTOMATION_APP_ID }}
170+
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
171+
165172
- name: Create the GitHub release
166173
env:
167174
PARTIAL_CHANGELOG: "${{ runner.temp }}/partial_changelog.md"
168175
VERSION: "${{ steps.getVersion.outputs.version }}"
169-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
176+
GH_TOKEN: ${{ steps.app-token.outputs.token }}
170177
run: |
171178
# Do not mark this release as latest. The most recent CLI release must be marked as latest.
172179
gh release create \

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.
66

7+
## 3.27.8 - 12 Dec 2024
8+
9+
- Fixed an issue where streaming the download and extraction of the CodeQL bundle did not respect proxy settings. [#2624](https://github.com/github/codeql-action/pull/2624)
10+
711
## 3.27.7 - 10 Dec 2024
812

913
- We are rolling out a change in December 2024 that will extract the CodeQL bundle directly to the toolcache to improve performance. [#2631](https://github.com/github/codeql-action/pull/2631)

0 commit comments

Comments
 (0)