Skip to content

Commit 62e266f

Browse files
authored
Update Go build (#160)
Update Go to 1.24. Signed-off-by: SuperQ <[email protected]>
1 parent 5dfe6cc commit 62e266f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: .circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ executors:
99
# also be updated.
1010
golang:
1111
docker:
12-
- image: cimg/go:1.23
12+
- image: cimg/go:1.24
1313

1414
jobs:
1515
test:

Diff for: .promu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
go:
22
# Whenever the Go version is updated here, .travis.yml and
33
# .circle/config.yml should also be updated.
4-
version: 1.23
4+
version: 1.24
55
repository:
66
path: github.com/prometheus-community/systemd_exporter
77
build:

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/prometheus-community/systemd_exporter
22

3-
go 1.22
3+
go 1.23.0
44

55
require (
66
github.com/alecthomas/kingpin/v2 v2.4.0
77
github.com/coreos/go-systemd/v22 v22.5.0
88
github.com/godbus/dbus/v5 v5.1.0
99
github.com/pkg/errors v0.9.1
10-
github.com/prometheus/client_golang v1.21.0
10+
github.com/prometheus/client_golang v1.21.1
1111
github.com/prometheus/common v0.62.0
1212
github.com/prometheus/exporter-toolkit v0.13.2
1313
)

Diff for: go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
3838
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
3939
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4040
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
41-
github.com/prometheus/client_golang v1.21.0 h1:DIsaGmiaBkSangBgMtWdNfxbMNdku5IK6iNhrEqWvdA=
42-
github.com/prometheus/client_golang v1.21.0/go.mod h1:U9NM32ykUErtVBxdvD3zfi+EuFkkaBvMb09mIfe0Zgg=
41+
github.com/prometheus/client_golang v1.21.1 h1:DOvXXTqVzvkIewV/CDPFdejpMCGeMcbGCQ8YOmu+Ibk=
42+
github.com/prometheus/client_golang v1.21.1/go.mod h1:U9NM32ykUErtVBxdvD3zfi+EuFkkaBvMb09mIfe0Zgg=
4343
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=
4444
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
4545
github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io=

0 commit comments

Comments
 (0)