* fix(ci): Make goinstall read from .go-version

* Upgrade Go version

Go version 1.19.4 contains a security fix that affects all HTTP/2
servers.
pull/2700/head
Johan Brandhorst-Satzkorn 3 years ago committed by GitHub
parent 595a576caa
commit 5d48b10123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1 +1 @@
1.19.1
1.19.4

@ -1,7 +1,8 @@
#!/bin/bash
set -e
VERSION="1.19.1"
DIR=$(dirname $(readlink -f "$0"))
VERSION="$(cat $DIR/../.go-version)"
[ -z "$GOROOT" ] && GOROOT="$HOME/.go"
[ -z "$GOPATH" ] && GOPATH="$HOME/go"

Loading…
Cancel
Save