Updated stale link to ex-MS employee's repo

The repo referenced in this file for getting the docker-ci-zap tool is still pointing to an old account, which has been taken over by a security researcher and has a pseudo-malicious version of the app living there (it just pings their server when someone uses the tool and passes over environment variables).  The correct repo is updated in this PR.
This commit is contained in:
Steve Withey 2023-01-16 17:17:28 +00:00 коммит произвёл GitHub
Родитель f520abc325
Коммит 4a8e63241a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -52,7 +52,7 @@ stop-service docker
Write-Host "Downloading Docker-Ci-Zap"
$dockerCiZapExe = Join-Path $Env:TEMP "docker-ci-zap.exe"
Remove-Item $dockerCiZapExe -Force -ErrorAction Ignore
(New-Object System.Net.WebClient).DownloadFile("https://github.com/jhowardmsft/docker-ci-zap/raw/master/docker-ci-zap.exe", $dockerCiZapExe)
(New-Object System.Net.WebClient).DownloadFile("https://github.com/moby/docker-ci-zap/raw/master/docker-ci-zap.exe", $dockerCiZapExe)
Unblock-File -Path $dockerCiZapExe
Write-Host "Running Docker-Ci-Zap on $dockerRootDir"