Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:alpine as builder
FROM golang:1.25-alpine as builder

RUN apk --update add ca-certificates

Expand Down
24 changes: 19 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
module github.com/pingcap/dead-mans-switch

go 1.14
go 1.25.0

require (
github.com/PagerDuty/go-pagerduty v1.2.0
github.com/google/go-cmp v0.5.0
github.com/prometheus/alertmanager v0.21.0
github.com/prometheus/client_golang v1.7.1
gopkg.in/yaml.v2 v2.3.0
github.com/google/go-cmp v0.7.0
github.com/prometheus/alertmanager v0.33.1
github.com/prometheus/client_golang v1.24.1
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.70.1 // indirect
github.com/prometheus/procfs v0.21.1 // indirect
golang.org/x/sys v0.47.0 // indirect
golang.org/x/text v0.40.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
)
Loading