Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions assembly-module-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ parameters:
steps:
- template: template-compliance/apiscan.yml
parameters:
softwareFolder: ''
softwareName: ''
softwareVersion: ''
APIScanEnable: ''
softwareFolder: ${{ parameters.softwareFolder }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default will translate into a literal string as parameters aren't defined at this point

softwareName: ${{ parameters.softwareName }}
softwareVersion: ${{ parameters.softwareVersion }}
APIScanEnable: ${{ parameters.APIScan }}

- template: template-compliance/auto-applicability.yml

Expand All @@ -39,14 +39,14 @@ steps:

- template: template-compliance/credscan.yml
parameters:
suppressionsFile: ''
suppressionsFile: ${{ parameters.suppressionsFile }}

- template: template-compliance/defender.yml

- template: template-compliance/TermCheck.yml
parameters:
optionsRulesDBPath: ''
optionsFTPath: ''
optionsRulesDBPath: ${{ parameters.optionsRulesDBPath }}
optionsFTPath: ${{ parameters.optionsFTPath }}

- template: template-compliance/vulnerability-assessment.yml

Expand Down
11 changes: 6 additions & 5 deletions script-module-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,27 @@ steps:

- template: template-compliance/credscan.yml
parameters:
suppressionsFile: ''
suppressionsFile: ${{ parameters.suppressionsFile }}

- template: template-compliance/defender.yml

- template: template-compliance/TermCheck.yml
parameters:
optionsRulesDBPath: ''
optionsFTPath: ''
optionsRulesDBPath: ${{ parameters.optionsRulesDBPath }}
optionsFTPath: ${{ parameters.optionsFTPath }}

- template: template-compliance/vulnerability-assessment.yml

- template: template-compliance/publish-security-logs.yml

- template: template-compliance/tsa-upload.yml
parameters:
codeBaseName: ''
codeBaseName: ${{ parameters.codeBaseName }}

- template: template-compliance/sdtreport.yml
parameters:
APIScan: ${{ parameters.APIScan }}
BinSkim: true
# script modules should not distribute binaries
BinSkim: false
CredScan: true
TermCheck: true