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

Update dependencies #367

Merged
merged 1 commit into from Jun 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions artifactory/services/gitlfsclean.go
Expand Up @@ -14,10 +14,10 @@ import (
"github.com/jfrog/jfrog-client-go/utils/errorutils"
"github.com/jfrog/jfrog-client-go/utils/io/content"
"github.com/jfrog/jfrog-client-go/utils/log"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
gitconfig "gopkg.in/src-d/go-git.v4/plumbing/format/config"
"gopkg.in/src-d/go-git.v4/plumbing/object"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
gitconfig "github.com/go-git/go-git/v5/plumbing/format/config"
"github.com/go-git/go-git/v5/plumbing/object"
)

type GitLfsCleanService struct {
Expand Down
23 changes: 11 additions & 12 deletions go.mod
Expand Up @@ -2,20 +2,19 @@ module github.com/jfrog/jfrog-client-go

require (
github.com/buger/jsonparser v0.0.0-20180910192245-6acdf747ae99
github.com/emirpasic/gods v1.12.0 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/go-git/go-git/v5 v5.4.2
github.com/gookit/color v1.4.2
github.com/jfrog/gofrog v1.0.6
github.com/mholt/archiver/v3 v3.5.0
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/stretchr/testify v1.6.1
github.com/ulikunitz/xz v0.5.8 // indirect
github.com/xanzy/ssh-agent v0.2.0
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11 // indirect
golang.org/x/text v0.3.4 // indirect
gopkg.in/src-d/go-billy.v4 v4.3.0 // indirect
gopkg.in/src-d/go-git.v4 v4.7.1
github.com/mholt/archiver/v3 v3.5.1-0.20210618180617-81fac4ba96e4
github.com/stretchr/testify v1.7.0
github.com/xanzy/ssh-agent v0.3.0
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
golang.org/x/text v0.3.6 // indirect
)

exclude (
golang.org/x/text v0.3.3
golang.org/x/text v0.3.4
)

go 1.13