summaryrefslogtreecommitdiff
path: root/data/datasource_git.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2021-01-02 13:05:57 -0500
committerDave Henderson <dhenderson@gmail.com>2021-01-02 13:05:57 -0500
commit5fec9649c427c3d2fb4098d65de82840a1759e21 (patch)
treebb9c4e6112aac52a33811c27e386c23043fa7e82 /data/datasource_git.go
parenta12ab2e37f0b4ce49804aa35821706b6d47e7ff9 (diff)
Migrate from src-d/go-git to go-git/go-git
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'data/datasource_git.go')
-rw-r--r--data/datasource_git.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/data/datasource_git.go b/data/datasource_git.go
index d3e79d57..6c2491de 100644
--- a/data/datasource_git.go
+++ b/data/datasource_git.go
@@ -15,14 +15,14 @@ import (
"github.com/hairyhenderson/gomplate/v3/base64"
"github.com/hairyhenderson/gomplate/v3/env"
- "gopkg.in/src-d/go-billy.v4"
- "gopkg.in/src-d/go-billy.v4/memfs"
- "gopkg.in/src-d/go-git.v4"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/transport"
- "gopkg.in/src-d/go-git.v4/plumbing/transport/http"
- "gopkg.in/src-d/go-git.v4/plumbing/transport/ssh"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-billy/v5"
+ "github.com/go-git/go-billy/v5/memfs"
+ "github.com/go-git/go-git/v5"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/transport"
+ "github.com/go-git/go-git/v5/plumbing/transport/http"
+ "github.com/go-git/go-git/v5/plumbing/transport/ssh"
+ "github.com/go-git/go-git/v5/storage/memory"
)
func readGit(source *Source, args ...string) ([]byte, error) {