ci: lock windows Go version at 1.18.8

Fixes the following build error:
```
protocol\messenger.go:5957:6: missing function body
protocol\messenger.go:5957:16: syntax error: unexpected [, expecting (
protocol\messenger.go:5959:2: syntax error: non-declaration statement outside function body
note: module requires Go 1.18
```

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-11-04 15:43:26 +01:00
parent f87f952330
commit c500eb9dc6
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,10 @@ function Install-Scoop {
# Install Git and other dependencies
function Install-Dependencies {
Write-Host "Installing dependencies..."
scoop install --global 7zip git dos2unix findutils wget make cmake gcc go rcedit inno-setup
scoop install --global `
7zip git dos2unix findutils `
wget rcedit inno-setup `
make cmake gcc go@1.18.8
scoop bucket add extras
scoop install --global vcredist2017
}