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.
1 parent 4a43430 commit 563a6feCopy full SHA for 563a6fe
.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