Skip to content

Commit

Permalink
update dependencies (#63)
Browse files Browse the repository at this point in the history
* update dependencies

* update go version
  • Loading branch information
ajatprabha authored Jun 9, 2021
1 parent 77dadb2 commit 7eb0a97
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 80 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.13.x, 1.14.x, 1.15.x ]
go-version: [ 1.14.x, 1.15.x, 1.16.x ]
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go-version }}
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.13.x, 1.14.x, 1.15.x ]
go-version: [ 1.14.x, 1.15.x, 1.16.x ]
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go-version }}
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:alpine AS builder
FROM golang:1.16-alpine AS builder
ENV GO111MODULE=on
WORKDIR /app
COPY . .
Expand Down
26 changes: 12 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
module github.com/gojek/darkroom

go 1.12
go 1.16

require (
cloud.google.com/go v0.44.3
cloud.google.com/go/storage v1.0.0
github.com/DataDog/datadog-go v2.2.0+incompatible // indirect
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
github.com/anthonynsimon/bild v0.10.1-0.20190710205720-eee9188e4370
github.com/aws/aws-sdk-go v1.20.19
github.com/anthonynsimon/bild v0.13.0
github.com/aws/aws-sdk-go v1.27.0
github.com/cactus/go-statsd-client/statsd v0.0.0-20190501063751-9a7692639588
github.com/chai2010/webp v1.1.0
github.com/gojektech/heimdall v5.0.2+incompatible
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
github.com/gorilla/mux v1.7.3
github.com/magiconair/properties v1.8.1 // indirect
github.com/gorilla/mux v1.8.0
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.7.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.10.0
github.com/rcrowley/go-metrics v0.0.0-20190706150252-9beb055b7962 // indirect
github.com/smartystreets/assertions v1.0.0 // indirect
github.com/smartystreets/goconvey v0.0.0-20190710188632-9d28bd7c0945 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/testify v1.6.1
go.uber.org/zap v1.10.0
google.golang.org/api v0.9.0
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.7.0
go.uber.org/zap v1.17.0
google.golang.org/api v0.13.0
sigs.k8s.io/controller-runtime v0.6.1
)
Loading

0 comments on commit 7eb0a97

Please sign in to comment.