chore: build with go1.19.4

This commit is contained in:
Jan De Dobbeleer 2022-12-14 15:39:19 +01:00 committed by Jan De Dobbeleer
parent 2b09eee61f
commit ea308563bc

View file

@ -10,10 +10,10 @@ runs:
- name: Install Go
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
with:
go-version: 1.19
go-version: 1.19.4
- name: Override Go ♻️
shell: pwsh
run: |
New-Item -Path ./bin -ItemType Directory
Invoke-WebRequest 'https://github.com/jandedobbeleer/go/releases/download/1.19/go' -OutFile "$env:GOROOT/bin/go"
Invoke-WebRequest 'https://github.com/jandedobbeleer/go/releases/download/1.19.4/go' -OutFile "$env:GOROOT/bin/go"
chmod a+x "$env:GOROOT/bin/go" 2>&1