File tree Expand file tree Collapse file tree 10 files changed +14
-10
lines changed
test/library-tests/ast/calls Expand file tree Collapse file tree 10 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 2828 with :
2929 filters : |
3030 src:
31+ - '.release.yml'
3132 - 'extractor/**'
3233 - 'rust-toolchain.toml'
3334 - 'Cargo.*'
Original file line number Diff line number Diff line change 11name : " codeql-extractor-bicep"
22repository : " GitHubSecurityLab/codeql-extractor-bicep"
3- version : " 0.2.3 "
3+ version : " 0.3.0 "
44
55ecosystems :
66 - Docs
Original file line number Diff line number Diff line change 1818
1919``` yaml
2020- name : Initialize and Analyze Bicep
21- uses : GitHubSecurityLab/codeql-extractor-bicep@v0.2.3
21+ uses : GitHubSecurityLab/codeql-extractor-bicep@v0.3.0
2222` ` `
2323
2424## Features
Original file line number Diff line number Diff line change 2525 id : extractor
2626 with :
2727 token : ${{ inputs.token }}
28- extractors : " GitHubSecurityLab/codeql-extractor-bicep@v0.2.3 "
28+ extractors : " GitHubSecurityLab/codeql-extractor-bicep@v0.3.0 "
2929 packs : githubsecuritylab/bicep-queries
3030 languages : " bicep"
3131 # Assumes GH is installed
Original file line number Diff line number Diff line change 11name : bicep
22display_name : Bicep
3- version : 0.2.3
3+ version : 0.3.0
44column_kind : utf8
55legacy_qltest_extraction : true
66build_modes :
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ class UserDefinedFunction extends Callable instanceof UserDefinedFunctionImpl {
161161 *
162162 * @return The parameters node of the function
163163 */
164- Expr getParameters ( ) { result = UserDefinedFunctionImpl .super .getParameters ( ) }
164+ Expr getParameters ( ) { result = UserDefinedFunctionImpl .super .getParameter ( _ ) }
165165
166166 /**
167167 * Gets the parameter at the specified index.
Original file line number Diff line number Diff line change 22library : true
33warnOnImplicitThis : false
44name : githubsecuritylab/bicep-all
5- version : 0.2.3
5+ version : 0.3.0
66dependencies :
77 codeql/util : " ^1.0.0"
88 codeql/yaml : " ^1.0.0"
Original file line number Diff line number Diff line change 11name : githubsecuritylab/bicep-queries
2- version : 0.2.3
2+ version : 0.3.0
33groups :
44 - bicep
55 - queries
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ private import bicep
33query predicate functions ( UserDefinedFunction function ) { any ( ) }
44
55query predicate functionParameters ( UserDefinedFunction function , Parameter params ) {
6- function .getParameters ( ) = params
6+ function .getParameter ( _ ) = params
77}
Original file line number Diff line number Diff line change @@ -29,9 +29,12 @@ if [ "$LATEST_RELEASE" != "$EXTRACTOR_VERSION" ]; then
2929 exit 1
3030 fi
3131
32+ echo " [+] Install pack dependencies"
33+ $CODEQL_BINARY pack install " ./ql/lib"
34+
3235 echo " [+] Add queries to extractor-pack"
33- $CODEQL_BINARY pack create --output=./extractor-pack/qlpacks ./ql/lib
34- $CODEQL_BINARY pack create --output=./extractor-pack/qlpacks ./ql/src
36+ $CODEQL_BINARY pack create --output=" ./extractor-pack/qlpacks" " ./ql/lib"
37+ $CODEQL_BINARY pack create --output=" ./extractor-pack/qlpacks" " ./ql/src"
3538
3639 # bundle extractor
3740 tar czf extractor-$EXTRACTOR_NAME .tar.gz extractor-pack
You can’t perform that action at this time.
0 commit comments