-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
security updates needs at least go version >=1.17 (#15)
[Dependabot alert fix] - Unhandled exception in gopkg.in/yaml.v3 #1 - update `go.mod` go version up to `1.18` - update direct and indirect dependencies PS: during the first steps of this update, tests using go version <1.17 fails because of their dependencies requirements.
- Loading branch information
Showing
7 changed files
with
57 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ services: | |
- memcached | ||
|
||
go: | ||
- 1.14.x | ||
- 1.15.x | ||
- 1.17.x | ||
- 1.18.x | ||
- tip | ||
|
||
matrix: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.15 | ||
FROM golang:1.18-alpine | ||
|
||
WORKDIR /go/src/app | ||
COPY . . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
module github.com/gritzkoo/golang-health-checker | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d | ||
github.com/gin-gonic/gin v1.7.7 | ||
github.com/go-playground/validator/v10 v10.11.0 // indirect | ||
github.com/gin-gonic/gin v1.8.0 | ||
github.com/go-redis/redis v6.15.9+incompatible | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e | ||
gopkg.in/go-playground/assert.v1 v1.2.1 | ||
) | ||
|
||
require ( | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.11.0 // indirect | ||
github.com/goccy/go-json v0.9.7 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/stretchr/testify v1.7.1 // indirect | ||
github.com/ugorji/go v1.2.7 // indirect | ||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e | ||
github.com/onsi/gomega v1.19.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.1 // indirect | ||
github.com/ugorji/go/codec v1.2.7 // indirect | ||
golang.org/x/net v0.0.0-20220526153639-5463443f8c37 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.