Skip to content

Commit bbc8e34

Browse files
chore: update to go 1.22.3 (#2)
1 parent d72dd99 commit bbc8e34

File tree

3 files changed

+26
-484
lines changed

3 files changed

+26
-484
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is the first stage, for building things that will be required by the
22
# final stage (notably the binary)
3-
FROM golang:1.19.2@sha256:0467d7d12d170ed8d998a2dae4a09aa13d0aa56e6d23c4ec2b1e4faacf86a813 AS builder
3+
FROM golang:1.22.3@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 AS builder
44

55
WORKDIR /go/src/app
66

go.mod

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
module github.com/michelheusschen/experia-v10-exporter
22

3-
go 1.19
3+
go 1.22
44

5-
require github.com/prometheus/client_golang v1.13.0
5+
require github.com/prometheus/client_golang v1.19.1
66

77
require (
88
github.com/beorn7/perks v1.0.1 // indirect
9-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
10-
github.com/golang/protobuf v1.5.2 // indirect
11-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
12-
github.com/prometheus/client_model v0.2.0 // indirect
13-
github.com/prometheus/common v0.37.0 // indirect
14-
github.com/prometheus/procfs v0.8.0 // indirect
15-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
16-
google.golang.org/protobuf v1.28.1 // indirect
9+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
10+
github.com/prometheus/client_model v0.5.0 // indirect
11+
github.com/prometheus/common v0.48.0 // indirect
12+
github.com/prometheus/procfs v0.12.0 // indirect
13+
golang.org/x/sys v0.17.0 // indirect
14+
google.golang.org/protobuf v1.33.0 // indirect
1715
)

0 commit comments

Comments
 (0)