Skip to content

Commit

Permalink
Build with go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg committed Sep 2, 2024
1 parent 9b81857 commit 05d3f67
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.22.6-alpine3.19 AS builder
FROM golang:1.23.0-alpine3.20 AS builder
WORKDIR /go/src/github.com/mrueg/netcupscp-exporter
COPY . .
RUN apk --no-cache add make git && make

FROM alpine:3.19
FROM alpine:3.20
COPY --from=builder /go/src/github.com/mrueg/netcupscp-exporter/netcupscp-exporter /

CMD ["/netcupscp-exporter"]
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module github.com/mrueg/netcupscp-exporter

go 1.21
go 1.22

toolchain go1.22.1
toolchain go1.22.6

require (
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/go-kit/log v0.2.1
github.com/hooklift/gowsdl v0.5.1-0.20230813171429-039e0b6b92e3
github.com/hooklift/gowsdl v0.5.1-0.20240801015259-2a06cec86c50
github.com/prometheus/client_golang v1.20.2
github.com/prometheus/common v0.57.0
github.com/prometheus/exporter-toolkit v0.11.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KE
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/hooklift/gowsdl v0.5.1-0.20230813171429-039e0b6b92e3 h1:eRgBTGUo+DXJ6kk55DU0yWJvgHFUYi6l00saG2m41hM=
github.com/hooklift/gowsdl v0.5.1-0.20230813171429-039e0b6b92e3/go.mod h1:9kRc402w9Ci/Mek5a1DNgTmU14yPY8fMumxNVvxhis4=
github.com/hooklift/gowsdl v0.5.1-0.20240801015259-2a06cec86c50 h1:m+xRwHVyx/Gw+FmBLr93RHSlHazoefgcbNgiCfTvACE=
github.com/hooklift/gowsdl v0.5.1-0.20240801015259-2a06cec86c50/go.mod h1:9kRc402w9Ci/Mek5a1DNgTmU14yPY8fMumxNVvxhis4=
github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=
github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
Expand Down

0 comments on commit 05d3f67

Please sign in to comment.