File tree 3 files changed +27
-4
lines changed
check-codescanning-config
3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,15 @@ inputs:
29
29
tools :
30
30
required : true
31
31
description : |
32
- The url of codeql to use.
32
+ The version of the CodeQL tools to use. This can be any of the following:
33
+
34
+ - A local path to a tarball containing the CodeQL tools, or
35
+ - A URL to a GitHub release assets containing the CodeQL tools, or
36
+ - A special value `linked` which is forcing the use of the CodeQL tools
37
+ that the action has been bundled with.
38
+
39
+ If not specified, the Action will check in several places until it finds
40
+ the CodeQL tools.
33
41
34
42
runs :
35
43
using : composite
Original file line number Diff line number Diff line change @@ -23,7 +23,15 @@ inputs:
23
23
tools :
24
24
required : true
25
25
description : |
26
- The url of codeql to use.
26
+ The version of the CodeQL tools to use. This can be any of the following:
27
+
28
+ - A local path to a tarball containing the CodeQL tools, or
29
+ - A URL to a GitHub release assets containing the CodeQL tools, or
30
+ - A special value `linked` which is forcing the use of the CodeQL tools
31
+ that the action has been bundled with.
32
+
33
+ If not specified, the Action will check in several places until it finds
34
+ the CodeQL tools.
27
35
28
36
runs :
29
37
using : composite
Original file line number Diff line number Diff line change @@ -3,9 +3,16 @@ description: 'Set up CodeQL'
3
3
author : ' GitHub'
4
4
inputs :
5
5
tools :
6
- description : URL of CodeQL tools
6
+ description : >-
7
+ The version of the CodeQL tools to use. This can be any of the following:
8
+
9
+ - A local path to a tarball containing the CodeQL tools, or
10
+ - A URL to a GitHub release assets containing the CodeQL tools, or
11
+ - A special value `linked` which is forcing the use of the CodeQL tools
12
+ that the action has been bundled with.
13
+
14
+ If not specified, the Action will check in several places until it finds the CodeQL tools.
7
15
required : false
8
- # If not specified the Action will check in several places until it finds the CodeQL tools.
9
16
languages :
10
17
description : >-
11
18
A comma-separated list of CodeQL languages to analyze.
You can’t perform that action at this time.
0 commit comments