Skip to content

Commit

Permalink
Update dependencies and used Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns committed Oct 20, 2021
1 parent 8b44009 commit df3d2f1
Show file tree
Hide file tree
Showing 4 changed files with 297 additions and 116 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
linux_sha256sum: ${{ steps.calculate-checksums-linux.outputs.linux_sha256sum }}
steps:

- name: Set up Go 1.13
- name: Set up Go 1.17
uses: actions/setup-go@v1
with:
go-version: 1.13
go-version: 1.17
id: go

- name: Check out code into the Go module directory
Expand Down
5 changes: 3 additions & 2 deletions cmd/beach/cmd/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ import (
"encoding/base64"
"errors"
"fmt"
"github.com/flownative/localbeach/pkg/exec"
log "github.com/sirupsen/logrus"
"io"
"os"
"path/filepath"
"strings"

"github.com/flownative/localbeach/pkg/exec"
log "github.com/sirupsen/logrus"

asset "github.com/flownative/localbeach/assets"
)

Expand Down
41 changes: 24 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
module github.com/flownative/localbeach

require (
cloud.google.com/go v0.75.0 // indirect
cloud.google.com/go/storage v1.12.0
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
cloud.google.com/go/storage v1.18.2
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
google.golang.org/api v0.59.0
)

require (
cloud.google.com/go v0.97.0 // 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.6 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/mod v0.4.1 // indirect
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/oauth2 v0.0.0-20210113205817-d3ed898aa8a3 // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/tools v0.1.0 // indirect
google.golang.org/api v0.36.0
google.golang.org/genproto v0.0.0-20210119180700-e258113e47cc // indirect
google.golang.org/grpc v1.35.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.4 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 // indirect
golang.org/x/sys v0.0.0-20211020174200-9d6173849985 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20211020151524-b7c3a969101a // indirect
google.golang.org/grpc v1.41.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
)

go 1.13
go 1.17
Loading

0 comments on commit df3d2f1

Please sign in to comment.