Skip to content

Commit

Permalink
dependency updates (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
naueramant authored Jan 18, 2023
1 parent c50dd73 commit 18e5556
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 323 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.19

- name: Test
run: go test -v ./...
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################
# STEP 1 build base
############################
FROM golang:1.16-alpine3.13 as build-base
FROM golang:1.19-alpine3.17 as build-base
RUN apk add --update --no-cache git ca-certificates build-base
WORKDIR /build
ENV GO111MODULE=on
Expand All @@ -12,7 +12,7 @@ RUN go mod download -x
############################
# STEP 2 image base
############################
FROM alpine:3.13 as image-base
FROM alpine:3.17 as image-base
WORKDIR /app
COPY --from=build-base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
ENTRYPOINT ["/app/parrot", "serve"]
Expand Down
22 changes: 11 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ require (
github.com/AppsFlyer/go-sundheit v0.5.0
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/go-redis/cache/v8 v8.4.3
github.com/go-redis/redis/v8 v8.11.4
github.com/go-redis/cache/v8 v8.4.4
github.com/go-redis/redis/v8 v8.11.5
github.com/golang/mock v1.6.0
github.com/johngb/langreg v0.0.0-20150123211413-5c6abc6d19d2
github.com/joho/godotenv v1.4.0
github.com/labstack/echo/v4 v4.6.1
github.com/labstack/gommon v0.3.1 // indirect
github.com/labstack/echo/v4 v4.10.0
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/paulfarver/echo-pack v0.3.0
github.com/paulfarver/echo-pack v0.5.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.10.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d
github.com/prometheus/client_golang v1.14.0
github.com/sirupsen/logrus v1.9.0
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.14.0
golang.org/x/sync v0.1.0
golang.org/x/sys v0.3.0
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/resty.v1 v1.12.0
)
Loading

0 comments on commit 18e5556

Please sign in to comment.