Skip to content

Commit

Permalink
better http health check management + bump to go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
mcorbin committed Mar 9, 2024
1 parent 38420e2 commit 06fc8e8
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 603 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.5 as build-env
FROM golang:1.22.1 as build-env

ADD . /app
WORKDIR /app
Expand Down
11 changes: 1 addition & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/appclacks/cabourotte

go 1.21
go 1.22

require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
Expand All @@ -17,7 +17,6 @@ require (
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/urfave/cli/v2 v2.26.0
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0
golang.org/x/crypto v0.17.0 // indirect
Expand All @@ -34,17 +33,9 @@ require github.com/mcorbin/corbierror v0.0.0-20220804210425-326e0b6f18e4
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
go.uber.org/goleak v1.2.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
Loading

0 comments on commit 06fc8e8

Please sign in to comment.