Skip to content

Commit 210be8b

Browse files
authored
Update to golang 1.24.13 (#31)
1 parent 1717433 commit 210be8b

3 files changed

Lines changed: 14 additions & 605 deletions

File tree

ci/run_ci.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ yum install -y epel-release
88
# Locale setting in CentOS8 is broken without this package
99
yum 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
1316
export GOBIN=$GOPATH/bin
1417
export PATH=$PATH:$GOBIN
1518

go.mod

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
module github.com/infrawatch/apputils
22

3-
go 1.13
3+
go 1.24
44

55
require (
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
)

0 commit comments

Comments
 (0)