Skip to content

Commit 294a9d9

Browse files
authored
Merge pull request #2490 from github/update-v3.26.8-64431c66d
Merge main into releases/v3
2 parents 8214744 + 00b3604 commit 294a9d9

File tree

94 files changed

+624
-655
lines changed

Some content is hidden

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

94 files changed

+624
-655
lines changed

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,21 @@ jobs:
115115
SOURCE_BRANCH: ${{ needs.prepare.outputs.backport_source_branch }}
116116
TARGET_BRANCH: ${{ matrix.target_branch }}
117117
steps:
118-
- uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4
118+
- name: Generate token
119+
uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4
119120
id: app-token
120121
with:
121122
app-id: ${{ vars.AUTOMATION_APP_ID }}
122123
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
123-
- uses: actions/checkout@v4
124+
125+
- name: Checkout
126+
uses: actions/checkout@v4
124127
with:
125128
fetch-depth: 0 # Need full history for calculation of diffs
129+
token: ${{ steps.app-token.outputs.token }}
126130
- uses: ./.github/actions/release-initialise
127131

128132
- name: Update older release branch
129-
env:
130-
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
131133
run: |
132134
echo SOURCE_BRANCH=${SOURCE_BRANCH}
133135
echo TARGET_BRANCH=${TARGET_BRANCH}

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.26.8 - 19 Sep 2024
8+
9+
- Update default CodeQL bundle version to 2.19.0. [#2483](https://github.com/github/codeql-action/pull/2483)
10+
711
## 3.26.7 - 13 Sep 2024
812

913
- Update default CodeQL bundle version to 2.18.4. [#2471](https://github.com/github/codeql-action/pull/2471)

analyze/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ inputs:
7474
required: true
7575
default: "true"
7676
token:
77-
description: "GitHub token to use for authenticating with this instance of GitHub. The token needs the `security-events: write` permission."
77+
description: "GitHub token to use for authenticating with this instance of GitHub. The token must be the built-in GitHub Actions token, and the workflow must have the `security-events: write` permission. Most of the time it is advisable to avoid specifying this input so that the workflow falls back to using the default value."
7878
required: false
7979
default: ${{ github.token }}
8080
matrix:

lib/analyze-action-post-helper.js

-44
This file was deleted.

lib/analyze-action-post-helper.js.map

-1
This file was deleted.

lib/analyze-action-post-helper.test.js

-73
This file was deleted.

lib/analyze-action-post-helper.test.js.map

-1
This file was deleted.

lib/analyze-action-post.js

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

lib/analyze-action-post.js.map

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

lib/analyze-action.js

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

0 commit comments

Comments
 (0)