We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2dbe735 + a2d1509 commit 9a8a456Copy full SHA for 9a8a456
.github/workflows/buildtest.yml
@@ -167,7 +167,7 @@ jobs:
167
if (Test-Path $zip) {
168
Write-Host cache hit
169
} else {
170
- (New-Object Net.WebClient).DownloadFile('${{ steps.files.outputs.url }}', $zip)
+ Invoke-WebRequest '${{ steps.files.outputs.url }}' -UserAgent 'pwsh' -OutFile $zip
171
}
172
[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem') > $null
173
[System.IO.Compression.ZipFile]::ExtractToDirectory($zip, $lua)
0 commit comments