Skip to content

Commit f100ba1

Browse files
authored
Bump GO version to 1.24.0
Bump GO version
2 parents 39fd534 + bd0a3e8 commit f100ba1

File tree

3 files changed

+50
-478
lines changed

3 files changed

+50
-478
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20.4 as builder
1+
FROM golang:1.24 as builder
22
WORKDIR /go/src/github.com/oliver006/redis_exporter/
33

44
ADD . /go/src/github.com/oliver006/redis_exporter/

go.mod

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
module github.com/oliver006/redis_exporter
22

3-
go 1.13
3+
go 1.22.0
44

55
require (
6-
github.com/gomodule/redigo v1.8.8
7-
github.com/mna/redisc v1.3.2
8-
github.com/prometheus/client_golang v1.12.2
9-
github.com/prometheus/client_model v0.2.0
10-
github.com/sirupsen/logrus v1.8.1
11-
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
12-
google.golang.org/protobuf v1.33.0 // indirect
6+
github.com/gomodule/redigo v1.9.2
7+
github.com/mna/redisc v1.4.0
8+
github.com/prometheus/client_golang v1.22.0
9+
github.com/prometheus/client_model v0.6.2
10+
github.com/sirupsen/logrus v1.9.3
11+
)
12+
13+
require (
14+
github.com/beorn7/perks v1.0.1 // indirect
15+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
16+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
17+
github.com/prometheus/common v0.62.0 // indirect
18+
github.com/prometheus/procfs v0.15.1 // indirect
19+
golang.org/x/sys v0.30.0 // indirect
20+
google.golang.org/protobuf v1.36.6 // indirect
1321
)

0 commit comments

Comments
 (0)