File tree 3 files changed +32
-4
lines changed
check-codescanning-config
3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,16 @@ inputs:
29
29
tools :
30
30
required : true
31
31
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.
33
42
34
43
runs :
35
44
using : composite
Original file line number Diff line number Diff line change @@ -23,7 +23,16 @@ inputs:
23
23
tools :
24
24
required : true
25
25
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.
27
36
28
37
runs :
29
38
using : composite
Original file line number Diff line number Diff line change @@ -3,9 +3,19 @@ description: 'Set up CodeQL'
3
3
author : ' GitHub'
4
4
inputs :
5
5
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.
7
18
required : false
8
- # If not specified the Action will check in several places until it finds the CodeQL tools.
9
19
languages :
10
20
description : >-
11
21
A comma-separated list of CodeQL languages to analyze.
You can’t perform that action at this time.
0 commit comments