Skip to content

Commit

Permalink
Installing go version 1.23.0 in the installer script
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Sep 20, 2024
1 parent 06f2293 commit d30c878
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.23.1"

- name: Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions installer_scripts/install-yb-voyager
Original file line number Diff line number Diff line change
Expand Up @@ -645,15 +645,15 @@ output() {
install_golang() {
if [ -x ${GO} ]; then
gov=`go version | { read _ _ v _; echo ${v#go}; }`
version_ok=$(version_satisfied 1.23.0 "$gov")
version_ok=$(version_satisfied 1.23.1 "$gov")
if [[ $version_ok -eq 1 ]]
then
output "Found golang=${gov}"
return
fi
fi
export GOROOT="/tmp/go"
GO_VERSION="go1.23.0"
GO_VERSION="go1.23.1"
GO="$GOROOT/bin/go"

os=$1
Expand Down
2 changes: 1 addition & 1 deletion yb-voyager/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/yugabyte/yb-voyager/yb-voyager

go 1.20
go 1.23.1

require (
cloud.google.com/go/storage v1.29.0
Expand Down

0 comments on commit d30c878

Please sign in to comment.