Skip to content

Commit 9fdb3e4

Browse files
authored
Merge pull request #2300 from github/update-v3.25.6-63d519c0a
Merge main into releases/v3
2 parents b7cec75 + 00792ab commit 9fdb3e4

File tree

92 files changed

+24544
-33352
lines changed

Some content is hidden

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

92 files changed

+24544
-33352
lines changed

.github/actions/check-codescanning-config/action.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,16 @@ inputs:
2929
tools:
3030
required: true
3131
description: |
32-
The url of codeql to use.
32+
The version of CodeQL passed to the `tools` input of the init action.
33+
This can be any of the following:
34+
35+
- A local path to a tarball containing the CodeQL tools, or
36+
- A URL to a GitHub release assets containing the CodeQL tools, or
37+
- A special value `linked` which is forcing the use of the CodeQL tools
38+
that the action has been bundled with.
39+
40+
If not specified, the Action will check in several places until it finds
41+
the CodeQL tools.
3342
3443
runs:
3544
using: composite

.github/actions/query-filter-test/action.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,16 @@ inputs:
2323
tools:
2424
required: true
2525
description: |
26-
The url of codeql to use.
26+
The version of CodeQL passed to the `tools` input of the init action.
27+
This can be any of the following:
28+
29+
- A local path to a tarball containing the CodeQL tools, or
30+
- A URL to a GitHub release assets containing the CodeQL tools, or
31+
- A special value `linked` which is forcing the use of the CodeQL tools
32+
that the action has been bundled with.
33+
34+
If not specified, the Action will check in several places until it finds
35+
the CodeQL tools.
2736
2837
runs:
2938
using: composite

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ 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.25.6 - 20 May 2024
8+
9+
- Update default CodeQL bundle version to 2.17.3. [#2295](https://github.com/github/codeql-action/pull/2295)
10+
711
## 3.25.5 - 13 May 2024
812

913
- Add a compatibility matrix of supported CodeQL Action, CodeQL CLI, and GitHub Enterprise Server versions to the [README.md](README.md). [#2273](https://github.com/github/codeql-action/pull/2273)
1014
- Avoid printing out a warning for a missing `on.push` trigger when the CodeQL Action is triggered via a `workflow_call` event. [#2274](https://github.com/github/codeql-action/pull/2274)
15+
- The `tools: latest` input to the `init` Action has been renamed to `tools: linked`. This option specifies that the Action should use the tools shipped at the same time as the Action. The old name will continue to work for backwards compatibility, but we recommend that new workflows use the new name. [#2281](https://github.com/github/codeql-action/pull/2281)
1116

1217
## 3.25.4 - 08 May 2024
1318

init/action.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@ description: 'Set up CodeQL'
33
author: 'GitHub'
44
inputs:
55
tools:
6-
description: URL of CodeQL tools
6+
description: >-
7+
By default, the Action will use the recommended version of the CodeQL
8+
Bundle to analyze your project. You can override this choice using this
9+
input. One of:
10+
11+
- A local path to a CodeQL Bundle tarball, or
12+
- The URL of a CodeQL Bundle tarball GitHub release asset, or
13+
- A special value `linked` which uses the version of the CodeQL tools
14+
that the Action has been bundled with.
15+
16+
If not specified, the Action will check in several places until it finds
17+
the CodeQL tools.
718
required: false
8-
# If not specified the Action will check in several places until it finds the CodeQL tools.
919
languages:
1020
description: >-
1121
A comma-separated list of CodeQL languages to analyze.
@@ -26,10 +36,7 @@ inputs:
2636
- `none`: The database will be created without building the source code.
2737
Available for all interpreted languages and some compiled languages.
2838
- `autobuild`: The database will be created by attempting to automatically build the source
29-
code.
30-
To use this build mode, ensure that your workflow calls the `autobuild` action
31-
between the `init` and `analyze` steps.
32-
Available for all compiled languages.
39+
code. Available for all compiled languages.
3340
- `manual`: The database will be created by building the source code using a manually
3441
specified build command. To use this build mode, specify manual build steps in
3542
your workflow between the `init` and `analyze` steps. Available for all

lib/database-upload.js

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

lib/database-upload.js.map

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

lib/database-upload.test.js

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

0 commit comments

Comments
 (0)