Skip to content

Commit 29d86d2

Browse files
authored
Merge pull request #2422 from github/update-v3.26.1-0d5982aa3
Merge main into releases/v3
2 parents eb055d7 + 5b15b9e commit 29d86d2

File tree

135 files changed

+1932
-858
lines changed

Some content is hidden

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

135 files changed

+1932
-858
lines changed

.github/workflows/__submit-sarif-failure.yml

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

.github/workflows/script/update-required-checks.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ fi
2828
echo "Getting checks for $GITHUB_SHA"
2929

3030
# Ignore any checks with "https://", CodeQL, LGTM, and Update checks.
31-
# Also ignore the non-matrixed "Unit Tests" job that only runs on pushes to protected branches.
32-
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs | .[].name | select(contains("https://") or . == "CodeQL" or . == "Dependabot" or . == "check-expected-release-files" or . == "Unit Tests" or contains("Update") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
31+
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs.[] | select(.conclusion != "skipped") | .name | select(contains("https://") or . == "CodeQL" or . == "Dependabot" or . == "check-expected-release-files" or contains("Update") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
3332

3433
echo "$CHECKS" | jq
3534

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.1 - 13 Aug 2024
8+
9+
No user facing changes.
10+
711
## 3.26.0 - 06 Aug 2024
812

913
- _Deprecation:_ Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner if this affects you. [#2403](https://github.com/github/codeql-action/pull/2403)

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,18 @@ To provide the best experience to customers using older versions of GitHub Enter
3333

3434
For more information, see "[Code scanning: deprecation of CodeQL Action v2](https://github.blog/changelog/2024-01-12-code-scanning-deprecation-of-codeql-action-v2/)."
3535

36-
## Supported versions of the CodeQL CLI and GitHub Enterprise Server
36+
## Supported versions of the CodeQL Bundle and GitHub Enterprise Server
3737

38-
We typically release new minor versions of the CodeQL Action and CLI when a new minor version of GitHub Enterprise Server (GHES) is released. When a version of GHES is deprecated, the CodeQL Action and CLI releases that shipped with it are deprecated as well.
38+
We typically release new minor versions of the CodeQL Action and Bundle when a new minor version of GitHub Enterprise Server (GHES) is released. When a version of GHES is deprecated, the CodeQL Action and Bundle releases that shipped with it are deprecated as well.
3939

40-
| Recommended CodeQL Action | Recommended CodeQL CLI Version | GitHub Environment |
40+
| Recommended CodeQL Action | Recommended CodeQL Bundle Version | GitHub Environment |
4141
|---------|----------|--------------|
4242
| `v3` | default (do not pass a `tools` input) | GitHub.com |
43-
| `v3.24.11` | `v2.16.6` | Enterprise Server 3.13 |
44-
| `3.22.12` | `2.15.5` | Enterprise Server 3.12 |
45-
| `2.22.1` | `2.14.6` | Enterprise Server 3.11 |
46-
| `2.20.3` | `2.13.5` | Enterprise Server 3.10 |
43+
| `v3.25.11` | `2.17.6` | Enterprise Server 3.14 |
44+
| `v3.24.11` | `2.16.6` | Enterprise Server 3.13 |
45+
| `v3.22.12` | `2.15.5` | Enterprise Server 3.12 |
46+
| `v2.22.1` | `2.14.6` | Enterprise Server 3.11 |
47+
| `v2.20.3` | `2.13.5` | Enterprise Server 3.10 |
4748

4849
CodeQL Action `v2` will stop receiving updates when GHES 3.11 is deprecated.
4950

lib/codeql.js

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

lib/codeql.js.map

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

lib/codeql.test.js

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

lib/codeql.test.js.map

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

lib/config-utils.js

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

lib/config-utils.js.map

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

lib/diagnostics.js

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

lib/diagnostics.js.map

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

0 commit comments

Comments
 (0)