This commit is contained in:
Bernie White 2022-10-17 21:38:52 +10:00 коммит произвёл GitHub
Родитель 8af9d5c51d
Коммит 8985264552
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 9 добавлений и 5 удалений

3
.vscode/settings.json поставляемый
Просмотреть файл

@ -25,6 +25,9 @@
"[jsonc]": {
"editor.tabSize": 2
},
"[powershell]": {
"editor.formatOnSave": false
},
"cSpell.words": [
"SARIF"
]

Просмотреть файл

@ -18,9 +18,9 @@ param (
[ValidateSet('repository', 'inputPath')]
[String]$InputType = $Env:INPUT_INPUTTYPE,
# The path to input files
[Parameter(Mandatory = $False)]
[String]$InputPath = $Env:INPUT_INPUTPATH,
# The path to input files
[Parameter(Mandatory = $False)]
[String]$InputPath = $Env:INPUT_INPUTPATH,
# The path to find rules
[Parameter(Mandatory = $False)]
@ -226,14 +226,15 @@ Write-Host "[info] Using Conventions: $Conventions";
Write-Host "[info] Using InputType: $InputType";
Write-Host "[info] Using InputPath: $InputPath";
Write-Host "[info] Using Option: $Option";
Write-Host "[info] Using Outcome: $Outcome";
Write-Host "[info] Using OutputFormat: $OutputFormat";
Write-Host "[info] Using OutputPath: $OutputPath";
try {
Push-Location -Path $Path;
$invokeParams = @{
Path = $Source
Style = 'GitHubActions'
Path = $Source
Style = 'GitHubActions'
ErrorAction = 'Stop'
}
WriteDebug "Preparing command-line:";