Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/ulikunitz/xz from 0.5.4 to 0.5.8 #18

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scanSettings": {
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff",
"useMendCheckNames": true
},
"issueSettings": {
"minSeverityLevel": "LOW",
"issueType": "DEPENDENCY"
}
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:22.04

# Install Go
RUN apt-get update && apt-get install -y wget git gcc unzip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.Build
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN go build /go/src/github.com/vwxyzjn/portwarden/web/scheduler/main.go && mv .
# Ready to run
EXPOSE 5000

FROM debian:stretch-20181112 as production
FROM debian:bullseye-20221004 as production
RUN apt-get update && apt-get install -y ca-certificates openssl
COPY --from=builder /usr/bin/bw /usr/bin/bw
COPY --from=builder /scheduler /go/src/github.com/vwxyzjn/portwarden/web/scheduler/scheduler
Expand Down
61 changes: 25 additions & 36 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,51 +3,40 @@ module github.com/vwxyzjn/portwarden
go 1.14

require (
cloud.google.com/go v0.33.1
github.com/RichardKnop/logging v0.0.0-20181101035820-b1d5d44c82d6
cloud.google.com/go v0.33.1 // indirect
github.com/RichardKnop/logging v0.0.0-20181101035820-b1d5d44c82d6 // indirect
github.com/RichardKnop/machinery v1.5.3
github.com/RichardKnop/redsync v1.2.0
github.com/aws/aws-sdk-go v1.15.84
github.com/bradfitz/gomemcache v0.0.0-20180710155616-bc664df96737
github.com/aws/aws-sdk-go v1.15.84 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76 // indirect
github.com/frankban/quicktest v1.14.4 // indirect
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7 // indirect
github.com/gin-gonic/gin v1.3.0
github.com/go-redis/redis v6.14.2+incompatible
github.com/golang/protobuf v1.2.0
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db
github.com/gomodule/redigo v2.0.0+incompatible
github.com/google/uuid v1.1.0
github.com/googleapis/gax-go v2.0.2+incompatible
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/google/uuid v1.1.0 // indirect
github.com/googleapis/gax-go v2.0.2+incompatible // indirect
github.com/imdario/mergo v0.3.6
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
github.com/json-iterator/go v1.1.5
github.com/kelseyhightower/envconfig v1.3.0
github.com/mattn/go-isatty v0.0.4
github.com/json-iterator/go v1.1.5 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mholt/archiver v2.1.0+incompatible
github.com/mitchellh/gox v1.0.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742
github.com/nwaples/rardecode v1.0.0
github.com/opentracing/opentracing-go v1.0.2
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/nwaples/rardecode v1.0.0 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.27.2 // indirect
github.com/pierrec/lz4 v2.4.1+incompatible // indirect
github.com/streadway/amqp v0.0.0-20181107104731-27835f1a64e9
github.com/streadway/amqp v0.0.0-20181107104731-27835f1a64e9 // indirect
github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51
github.com/ugorji/go v1.1.1
github.com/ulikunitz/xz v0.5.4
go.opencensus.io v0.18.0
golang.org/x/crypto v0.0.0-20181015023909-0c41d7ab0a0e
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a
github.com/ugorji/go v1.1.1 // indirect
github.com/ulikunitz/xz v0.5.8 // indirect
golang.org/x/crypto v0.1.0
golang.org/x/net v0.7.0
golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8
golang.org/x/text v0.3.0
google.golang.org/api v0.0.0-20181114235557-83a9d304b1e6
google.golang.org/appengine v1.3.0
google.golang.org/genproto v0.0.0-20181127195345-31ac5d88444a
google.golang.org/grpc v1.16.0
gopkg.in/go-playground/validator.v8 v8.18.2
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce
google.golang.org/appengine v1.3.0 // indirect
google.golang.org/genproto v0.0.0-20181127195345-31ac5d88444a // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/urfave/cli.v1 v1.20.0
gopkg.in/yaml.v2 v2.2.1
)
Loading