File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,8 +8,11 @@ yum install -y epel-release
88# Locale setting in CentOS8 is broken without this package
99yum install -y glibc-langpack-en
1010
11- # install Go
12- yum install -y golang
11+ # install Go 1.24.13
12+ GO_VERSION=1.24.13
13+ curl -L " https://go.dev/dl/go${GO_VERSION} .linux-amd64.tar.gz" -o /tmp/go.tar.gz
14+ tar -C /usr/local -xzf /tmp/go.tar.gz
15+ export PATH=/usr/local/go/bin:$PATH
1316export GOBIN=$GOPATH /bin
1417export PATH=$PATH :$GOBIN
1518
Original file line number Diff line number Diff line change 11module github.com/infrawatch/apputils
22
3- go 1.13
3+ go 1.24
44
55require (
66 github.com/Azure/go-amqp v1.0.5
77 github.com/go-ini/ini v1.62.0
8- github.com/smartystreets/goconvey v1.8.1 // indirect
98 github.com/streadway/amqp v1.0.0
109 github.com/stretchr/testify v1.8.4
10+ )
11+
12+ require (
13+ github.com/davecgh/go-spew v1.1.1 // indirect
14+ github.com/pmezard/go-difflib v1.0.0 // indirect
15+ github.com/smartystreets/goconvey v1.8.1 // indirect
1116 gopkg.in/ini.v1 v1.67.0 // indirect
17+ gopkg.in/yaml.v3 v3.0.1 // indirect
1218)
You can’t perform that action at this time.
0 commit comments