Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated dependency and build versions
  • Loading branch information
antoniomika committed Aug 4, 2021
1 parent c6fe3f8 commit 2c9d65f
Show file tree
Hide file tree
Showing 7 changed files with 582 additions and 32 deletions.
1 change: 0 additions & 1 deletion .dockerignore
@@ -1,6 +1,5 @@
/.dockerignore
/Dockerfile
/Dockerfile.buildkit
/.git/
/.github/
/.gitignore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM --platform=$BUILDPLATFORM golang:1.15-alpine as builder
FROM --platform=$BUILDPLATFORM golang:1.16-alpine as builder
LABEL maintainer="Antonio Mika <me@antoniomika.me>"

ENV CGO_ENABLED 0
Expand Down
64 changes: 38 additions & 26 deletions go.mod
@@ -1,45 +1,57 @@
module github.com/antoniomika/sish

go 1.15
go 1.16

require (
github.com/HdrHistogram/hdrhistogram-go v1.1.0 // indirect
github.com/ScaleFT/sshkeys v0.0.0-20200327173127-6142f742bca5
github.com/caddyserver/certmagic v0.12.0
github.com/caddyserver/certmagic v0.14.1
github.com/coreos/bbolt v1.3.2 // indirect
github.com/coreos/etcd v3.3.13+incompatible // indirect
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/fsnotify/fsnotify v1.4.9
github.com/gin-gonic/gin v1.6.3
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/gin-gonic/gin v1.7.3
github.com/go-playground/validator/v10 v10.8.0 // indirect
github.com/gorilla/websocket v1.4.2
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/jpillora/ipfilter v1.2.2
github.com/json-iterator/go v1.1.10 // indirect
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/magiconair/properties v1.8.4 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mholt/acmez v0.1.3 // indirect
github.com/miekg/dns v1.1.38 // indirect
github.com/miekg/dns v1.1.43 // indirect
github.com/mikesmitty/edkey v0.0.0-20170222072505-3356ea4e686a
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/phuslu/iploc v1.0.20210129 // indirect
github.com/pires/go-proxyproto v0.4.2
github.com/sirupsen/logrus v1.7.0
github.com/spf13/afero v1.5.1 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.1.3
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/phuslu/iploc v1.0.20210730 // indirect
github.com/pires/go-proxyproto v0.6.0
github.com/prometheus/client_golang v0.9.3 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/soheilhy/cmux v0.1.4 // indirect
github.com/spf13/cast v1.4.0 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.7.1
github.com/ugorji/go v1.2.4 // indirect
github.com/vulcand/oxy v1.1.0
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/text v0.3.5 // indirect
google.golang.org/protobuf v1.25.0 // indirect
github.com/spf13/viper v1.8.1
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
github.com/ugorji/go v1.2.6 // indirect
github.com/vulcand/oxy v1.3.0
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
go.etcd.io/bbolt v1.3.2 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.18.1 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/resty.v1 v1.12.0 // indirect
)

replace github.com/vulcand/oxy => github.com/antoniomika/oxy v1.1.1-0.20210215225031-0afb828604bb

replace github.com/pires/go-proxyproto => github.com/antoniomika/go-proxyproto v0.1.4-0.20210215223815-7210fcdac442
replace github.com/vulcand/oxy => github.com/antoniomika/oxy v1.1.1-0.20210804032133-5924ea01c950

0 comments on commit 2c9d65f

Please sign in to comment.