Skip to content

Commit

Permalink
Update package due to CVE
Browse files Browse the repository at this point in the history
  • Loading branch information
vishen committed Mar 11, 2022
1 parent ce41329 commit 608b77d
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 221 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
strategy:
matrix:
go-version: [1.15.x, 1.16.x, 1.17.x]
platform: [ubuntu-latest, macos-latest]
platform: [ubuntu-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand All @@ -56,4 +56,4 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: go mod download
- name: Build
run: go build
run: go build
45 changes: 36 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,47 @@
module github.com/vishen/go-chromecast

go 1.15
go 1.17

require (
cloud.google.com/go/texttospeech v1.3.0
github.com/buger/jsonparser v1.0.0
github.com/buger/jsonparser v1.1.1
github.com/gogo/protobuf v1.3.2
github.com/grandcat/zeroconf v1.0.0
github.com/h2non/filetype v1.1.0
github.com/jroimartin/gocui v0.4.0
github.com/h2non/filetype v1.1.3
github.com/jroimartin/gocui v0.5.0
github.com/mitchellh/go-homedir v1.1.0
github.com/nsf/termbox-go v0.0.0-20201124104050-ed494de23a00 // indirect
github.com/pkg/errors v0.9.1
github.com/rogpeppe/go-internal v1.6.2
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.3.0
google.golang.org/api v0.70.0
google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.4.0
google.golang.org/api v0.71.0
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6
)

require (
cloud.google.com/go/compute v1.5.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/miekg/dns v1.1.46 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.9 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/grpc v1.45.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/errgo.v2 v2.1.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
Loading

0 comments on commit 608b77d

Please sign in to comment.