Skip to content

Commit 3e2e710

Browse files
Bump github.com/palantir/go-githubapp from 0.13.2 to 0.14.0 (#487)
* Bump github.com/palantir/go-githubapp from 0.13.2 to 0.14.0 Bumps [github.com/palantir/go-githubapp](https://github.com/palantir/go-githubapp) from 0.13.2 to 0.14.0. - [Release notes](https://github.com/palantir/go-githubapp/releases) - [Commits](palantir/go-githubapp@v0.13.2...v0.14.0) --- updated-dependencies: - dependency-name: github.com/palantir/go-githubapp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Upgrade github api * tidy modules Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David J. M. Karlsen <[email protected]>
1 parent 1a83595 commit 3e2e710

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

controllers/githubactionrunner_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
garov1alpha1 "github.com/evryfs/github-actions-runner-operator/api/v1alpha1"
3030
"github.com/evryfs/github-actions-runner-operator/controllers/githubapi"
3131
"github.com/go-logr/logr"
32-
"github.com/google/go-github/v45/github"
32+
"github.com/google/go-github/v47/github"
3333
"github.com/redhat-cop/operator-utils/pkg/util"
3434
"github.com/thoas/go-funk"
3535
corev1 "k8s.io/api/core/v1"

controllers/githubactionrunner_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package controllers
33
import (
44
"context"
55
"github.com/evryfs/github-actions-runner-operator/api/v1alpha1"
6-
"github.com/google/go-github/v45/github"
6+
"github.com/google/go-github/v47/github"
77
"github.com/gophercloud/gophercloud/testhelper"
88
"github.com/redhat-cop/operator-utils/pkg/util"
99
"github.com/stretchr/testify/mock"

controllers/githubapi/runnerapi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package githubapi
22

33
import (
44
"context"
5-
"github.com/google/go-github/v45/github"
5+
"github.com/google/go-github/v47/github"
66
"github.com/gregjones/httpcache"
77
"github.com/palantir/go-githubapp/githubapp"
88
)

controllers/podrunner_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package controllers
33
import (
44
"fmt"
55
"github.com/evryfs/github-actions-runner-operator/api/v1alpha1"
6-
"github.com/google/go-github/v45/github"
6+
"github.com/google/go-github/v47/github"
77
"github.com/redhat-cop/operator-utils/pkg/util"
88
"github.com/thoas/go-funk"
99
corev1 "k8s.io/api/core/v1"

controllers/podrunner_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package controllers
22

33
import (
44
"github.com/evryfs/github-actions-runner-operator/api/v1alpha1"
5-
"github.com/google/go-github/v45/github"
5+
"github.com/google/go-github/v47/github"
66
"github.com/stretchr/testify/assert"
77
v1 "k8s.io/api/core/v1"
88
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ go 1.19
55
require (
66
github.com/caitlinelfring/go-env-default v1.1.0
77
github.com/go-logr/logr v1.2.3
8-
github.com/google/go-github/v45 v45.2.0
8+
github.com/google/go-github/v47 v47.1.0
99
github.com/gophercloud/gophercloud v1.0.0
1010
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1111
github.com/onsi/ginkgo v1.16.5
1212
github.com/onsi/gomega v1.20.2
13-
github.com/palantir/go-githubapp v0.13.2
13+
github.com/palantir/go-githubapp v0.14.0
1414
github.com/redhat-cop/operator-utils v1.3.4
1515
github.com/stretchr/testify v1.8.0
1616
github.com/thoas/go-funk v0.9.2
@@ -46,7 +46,8 @@ require (
4646
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4747
github.com/golang/protobuf v1.5.2 // indirect
4848
github.com/google/gnostic v0.5.7-v3refs // indirect
49-
github.com/google/go-cmp v0.5.8 // indirect
49+
github.com/google/go-cmp v0.5.9 // indirect
50+
github.com/google/go-github/v45 v45.2.0 // indirect
5051
github.com/google/go-querystring v1.1.0 // indirect
5152
github.com/google/gofuzz v1.1.0 // indirect
5253
github.com/google/uuid v1.1.2 // indirect
@@ -82,7 +83,7 @@ require (
8283
go.uber.org/atomic v1.7.0 // indirect
8384
go.uber.org/multierr v1.6.0 // indirect
8485
go.uber.org/zap v1.21.0 // indirect
85-
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
86+
golang.org/x/crypto v0.0.0-20220919173607-35f4265a4bc0 // indirect
8687
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
8788
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
8889
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect

go.sum

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,13 @@ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
243243
github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
244244
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
245245
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
246-
github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
247246
github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
247+
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
248+
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
248249
github.com/google/go-github/v45 v45.2.0 h1:5oRLszbrkvxDDqBCNj2hjDZMKmvexaZ1xw/FCD+K3FI=
249250
github.com/google/go-github/v45 v45.2.0/go.mod h1:FObaZJEDSTa/WGCzZ2Z3eoCDXWJKMenWWTrd8jrta28=
251+
github.com/google/go-github/v47 v47.1.0 h1:Cacm/WxQBOa9lF0FT0EMjZ2BWMetQ1TQfyurn4yF1z8=
252+
github.com/google/go-github/v47 v47.1.0/go.mod h1:VPZBXNbFSJGjyjFRUKo9vZGawTajnWzC/YjGw/oFKi0=
250253
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
251254
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
252255
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
@@ -414,8 +417,8 @@ github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1y
414417
github.com/onsi/gomega v1.20.2 h1:8uQq0zMgLEfa0vRrrBgaJF2gyW9Da9BmfGV+OyUzfkY=
415418
github.com/onsi/gomega v1.20.2/go.mod h1:iYAIXgPSaDHak0LCMA+AWBpIKBr8WZicMxnE8luStNc=
416419
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
417-
github.com/palantir/go-githubapp v0.13.2 h1:6FV2QHvVoLSuwwDoghBuUHH2LoaI7nKYqXTSSOs3rLc=
418-
github.com/palantir/go-githubapp v0.13.2/go.mod h1:6o1dPKFPhfZs6Gu2JmCtxqWfWvVZcc37RDjUdM0sYsM=
420+
github.com/palantir/go-githubapp v0.14.0 h1:UbUAIEQHSqPzoFMy3P6veYFREmjpQBf6Tijre8XIzvE=
421+
github.com/palantir/go-githubapp v0.14.0/go.mod h1:a4IzV8xv1d8hRwYMn1+CBbYjhBjq75kapm3lTDgq1uM=
419422
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
420423
github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
421424
github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
@@ -563,8 +566,8 @@ golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5y
563566
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
564567
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
565568
golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
566-
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd h1:XcWmESyNjXJMLahc3mqVQJcgSTDxFxhETVlfk9uGc38=
567-
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
569+
golang.org/x/crypto v0.0.0-20220919173607-35f4265a4bc0 h1:a5Yg6ylndHHYJqIPrdq0AhvR6KTvDTAvgBtaidhEevY=
570+
golang.org/x/crypto v0.0.0-20220919173607-35f4265a4bc0/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
568571
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
569572
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
570573
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=

0 commit comments

Comments
 (0)