Skip to content

Commit 39e5f9f

Browse files
dep: update module github.com/google/go-github/v66 to v67 (#513)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 445a6a6 commit 39e5f9f

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
1010
github.com/gfleury/go-bitbucket-v1 v0.0.0-20240917142304-df385efaac68
1111
github.com/go-git/go-git/v5 v5.12.0
12-
github.com/google/go-github/v66 v66.0.0
12+
github.com/google/go-github/v67 v67.0.0
1313
github.com/ktrysmt/go-bitbucket v0.9.81
1414
github.com/mitchellh/mapstructure v1.5.0
1515
github.com/pkg/errors v0.9.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
6363
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
6464
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
6565
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
66-
github.com/google/go-github/v66 v66.0.0 h1:ADJsaXj9UotwdgK8/iFZtv7MLc8E8WBl62WLd/D/9+M=
67-
github.com/google/go-github/v66 v66.0.0/go.mod h1:+4SO9Zkuyf8ytMj0csN1NR/5OTR+MfqPp8P8dVlcvY4=
66+
github.com/google/go-github/v67 v67.0.0 h1:g11NDAmfaBaCO8qYdI9fsmbaRipHNWRIU/2YGvlh4rg=
67+
github.com/google/go-github/v67 v67.0.0/go.mod h1:zH3K7BxjFndr9QSeFibx4lTKkYS3K9nDanoI1NjaOtY=
6868
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
6969
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
7070
github.com/gorilla/mux v1.7.4 h1:VuZ8uybHlWmqV03+zRzdwKL4tUnIp1MAQtp1mIFE1bc=

internal/scm/github/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"time"
1111

12-
"github.com/google/go-github/v66/github"
12+
"github.com/google/go-github/v67/github"
1313
"github.com/pkg/errors"
1414
log "github.com/sirupsen/logrus"
1515
"golang.org/x/exp/maps"

internal/scm/github/pullrequest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package github
33
import (
44
"fmt"
55

6-
"github.com/google/go-github/v66/github"
6+
"github.com/google/go-github/v67/github"
77

88
"github.com/lindell/multi-gitter/internal/scm"
99
)

internal/scm/github/repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"net/url"
66

7-
"github.com/google/go-github/v66/github"
7+
"github.com/google/go-github/v67/github"
88
"github.com/pkg/errors"
99
)
1010

internal/scm/github/retry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/google/go-github/v66/github"
10+
"github.com/google/go-github/v67/github"
1111
"github.com/pkg/errors"
1212
log "github.com/sirupsen/logrus"
1313
)

internal/scm/github/retry_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/google/go-github/v66/github"
11+
"github.com/google/go-github/v67/github"
1212
"github.com/pkg/errors"
1313
"github.com/stretchr/testify/assert"
1414
)

internal/scm/github/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package github
33
import (
44
"strings"
55

6-
"github.com/google/go-github/v66/github"
6+
"github.com/google/go-github/v67/github"
77
"github.com/lindell/multi-gitter/internal/scm"
88
)
99

0 commit comments

Comments
 (0)