Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
diegobernardes committed Mar 23, 2024
1 parent 3395b13 commit e44d4f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Earthfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION 0.7
VERSION 0.8

ARG --global BASE_IMAGE=golang:1.22-bookworm
FROM $BASE_IMAGE
Expand Down Expand Up @@ -32,8 +32,8 @@ go-test:

go-linter:
FROM +go-base
RUN go install golang.org/x/vuln/cmd/[email protected].1 \
&& go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2
RUN go install golang.org/x/vuln/cmd/[email protected].4 \
&& go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.57.1
COPY .golangci.yaml .
RUN govulncheck ./... \
&& golangci-lint run ./...
Expand All @@ -52,7 +52,7 @@ update-pkg-go-dev:
# compile-proto is used to compile cTrader Open API protobuf files. In case the 'protoc-gen-go' version changes, it's
# recommended to run 'go mod tidy'.
compile-proto:
LOCALLY
LOCALLY
RUN rm -rf openapi
FROM $BASE_IMAGE
RUN apt-get update \
Expand All @@ -63,4 +63,4 @@ compile-proto:
RUN cd openapi-proto-messages \
&& protoc --go_out=. --go_opt=paths=source_relative *.proto \
&& find . ! \( -name '*.go' \) -delete
SAVE ARTIFACT openapi-proto-messages AS LOCAL openapi
SAVE ARTIFACT openapi-proto-messages AS LOCAL openapi
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/samber/lo v1.39.0
github.com/satori/uuid v1.2.0
github.com/stretchr/testify v1.9.0
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81
google.golang.org/protobuf v1.33.0
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 h1:+iq7lrkxmFNBM7xx+Rae2W6uyPfhPeDWD+n+JgppptE=
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI=
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 h1:6R2FC06FonbXQ8pK11/PDFY6N6LWlf9KlzibaCapmqc=
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81/go.mod h1:CQ1k9gNrJ50XIzaKCRR2hssIjF07kZFEiieALBM/ARQ=
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
Expand Down

0 comments on commit e44d4f3

Please sign in to comment.