Skip to content

Commit

Permalink
fix remove go version restriction to 1.22 (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
iankingori authored Nov 18, 2024
1 parent bcc36af commit 8f3a205
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ set -o nounset
set -o pipefail
set -o errexit

GO_LATEST_VERSION=go1.21.7
#TODO: switch back to latest go version after hcsshim takes: https://github.com/microsoft/go-winio/pull/312
#$(curl -s -L https://golang.org/VERSION\?m\=text | head -1)
GO_LATEST_VERSION=$(curl -s -L https://golang.org/VERSION\?m\=text | head -1)

curl -s -O https://dl.google.com/go/${GO_LATEST_VERSION}.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf ${GO_LATEST_VERSION}.linux-amd64.tar.gz
Expand Down

0 comments on commit 8f3a205

Please sign in to comment.