Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rraulinio committed Feb 4, 2025
1 parent b856a39 commit abaade0
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 25 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
COMMIT := $(shell git rev-parse HEAD)
COMMIT_SHORT := $(shell git rev-parse HEAD | cut -c -7)
PROJECT := github.com/Vivino/rankdb
WITH_MODULES := GO111MODULE=on GOSUMDB=off GOPROXY=https://gomods.vivino.com,https://proxy.golang.org,direct
BUILD_ARCH :=
export GO111MODULE = on

Expand Down Expand Up @@ -55,3 +56,6 @@ commit:
push-image:
docker push ${IMAGE}:${VERSION}
docker push ${IMAGE}:latest

tidy: clean
${WITH_MODULES} go mod tidy -v
20 changes: 11 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/Vivino/rankdb

go 1.18
go 1.22.0

toolchain go1.23.0

require (
github.com/BurntSushi/toml v1.3.2
Expand All @@ -23,8 +25,8 @@ require (
github.com/tinylib/msgp v1.1.2
github.com/ugorji/go/codec v1.1.7
go.etcd.io/bbolt v1.3.5
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/tools v0.13.0
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
golang.org/x/tools v0.29.0
gopkg.in/DataDog/dd-trace-go.v1 v1.37.0
)

Expand Down Expand Up @@ -164,13 +166,13 @@ require (
gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
go.opencensus.io v0.24.0 // indirect
gocloud.dev v0.24.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/oauth2 v0.10.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/api v0.126.0 // indirect
Expand Down
Loading

0 comments on commit abaade0

Please sign in to comment.