Skip to content

Commit 18e5556

Browse files
authored
dependency updates (#47)
1 parent c50dd73 commit 18e5556

File tree

5 files changed

+444
-323
lines changed

5 files changed

+444
-323
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.17
22+
go-version: 1.19
2323

2424
- name: Test
2525
run: go test -v ./...

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
############################
22
# STEP 1 build base
33
############################
4-
FROM golang:1.16-alpine3.13 as build-base
4+
FROM golang:1.19-alpine3.17 as build-base
55
RUN apk add --update --no-cache git ca-certificates build-base
66
WORKDIR /build
77
ENV GO111MODULE=on
@@ -12,7 +12,7 @@ RUN go mod download -x
1212
############################
1313
# STEP 2 image base
1414
############################
15-
FROM alpine:3.13 as image-base
15+
FROM alpine:3.17 as image-base
1616
WORKDIR /app
1717
COPY --from=build-base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
1818
ENTRYPOINT ["/app/parrot", "serve"]

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ require (
66
github.com/AppsFlyer/go-sundheit v0.5.0
77
github.com/go-playground/universal-translator v0.17.0 // indirect
88
github.com/go-playground/validator v9.31.0+incompatible
9-
github.com/go-redis/cache/v8 v8.4.3
10-
github.com/go-redis/redis/v8 v8.11.4
9+
github.com/go-redis/cache/v8 v8.4.4
10+
github.com/go-redis/redis/v8 v8.11.5
1111
github.com/golang/mock v1.6.0
1212
github.com/johngb/langreg v0.0.0-20150123211413-5c6abc6d19d2
1313
github.com/joho/godotenv v1.4.0
14-
github.com/labstack/echo/v4 v4.6.1
15-
github.com/labstack/gommon v0.3.1 // indirect
14+
github.com/labstack/echo/v4 v4.10.0
1615
github.com/leodido/go-urn v1.2.1 // indirect
1716
github.com/mitchellh/go-homedir v1.1.0
18-
github.com/paulfarver/echo-pack v0.3.0
17+
github.com/paulfarver/echo-pack v0.5.1
1918
github.com/pkg/errors v0.9.1
20-
github.com/prometheus/client_golang v1.11.0
21-
github.com/sirupsen/logrus v1.8.1
22-
github.com/spf13/cobra v1.2.1
23-
github.com/spf13/viper v1.10.0
24-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
25-
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d
19+
github.com/prometheus/client_golang v1.14.0
20+
github.com/sirupsen/logrus v1.9.0
21+
github.com/smartystreets/goconvey v1.6.4 // indirect
22+
github.com/spf13/cobra v1.6.1
23+
github.com/spf13/viper v1.14.0
24+
golang.org/x/sync v0.1.0
25+
golang.org/x/sys v0.3.0
2626
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
2727
gopkg.in/resty.v1 v1.12.0
2828
)

0 commit comments

Comments
 (0)