From da3efe96a573adc091e41c30e450315d29797cea Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Jun 2023 11:57:13 +0200 Subject: [PATCH] Update module github.com/google/go-github/v48 to v52 (#57) * Update module github.com/google/go-github/v48 to v52 * Update dep across all files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Oded Ben-Ozer --- cmd/telefonistka/server.go | 2 +- go.mod | 2 +- internal/pkg/githubapi/clients.go | 2 +- internal/pkg/githubapi/drift_detection.go | 2 +- internal/pkg/githubapi/drift_detection_test.go | 2 +- internal/pkg/githubapi/github.go | 2 +- internal/pkg/githubapi/promotion.go | 2 +- internal/pkg/githubapi/promotion_test.go | 2 +- internal/pkg/prometheus/prometheus.go | 2 +- internal/pkg/prometheus/prometheus_test.go | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cmd/telefonistka/server.go b/cmd/telefonistka/server.go index 53fe3dd6..98d9be7e 100644 --- a/cmd/telefonistka/server.go +++ b/cmd/telefonistka/server.go @@ -7,7 +7,7 @@ import ( "time" "github.com/alexliesenfeld/health" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/shurcooL/githubv4" log "github.com/sirupsen/logrus" diff --git a/go.mod b/go.mod index 129fb285..764f265a 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/alexliesenfeld/health v0.7.0 github.com/bradleyfalzon/ghinstallation/v2 v2.4.0 github.com/go-test/deep v1.1.0 - github.com/google/go-github/v48 v48.2.0 + github.com/google/go-github/v52 v52.0.0 github.com/google/go-github/v52 v52.0.0 github.com/hexops/gotextdiff v1.0.3 github.com/migueleliasweb/go-github-mock v0.0.18 diff --git a/internal/pkg/githubapi/clients.go b/internal/pkg/githubapi/clients.go index f52d0901..46f98634 100644 --- a/internal/pkg/githubapi/clients.go +++ b/internal/pkg/githubapi/clients.go @@ -8,7 +8,7 @@ import ( "time" "github.com/bradleyfalzon/ghinstallation/v2" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/shurcooL/githubv4" log "github.com/sirupsen/logrus" "golang.org/x/oauth2" diff --git a/internal/pkg/githubapi/drift_detection.go b/internal/pkg/githubapi/drift_detection.go index 85da1a63..76922f6d 100644 --- a/internal/pkg/githubapi/drift_detection.go +++ b/internal/pkg/githubapi/drift_detection.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/hexops/gotextdiff" "github.com/hexops/gotextdiff/myers" "github.com/hexops/gotextdiff/span" diff --git a/internal/pkg/githubapi/drift_detection_test.go b/internal/pkg/githubapi/drift_detection_test.go index dcf31cf6..b2d21d1b 100644 --- a/internal/pkg/githubapi/drift_detection_test.go +++ b/internal/pkg/githubapi/drift_detection_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/go-test/deep" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/hexops/gotextdiff" "github.com/hexops/gotextdiff/myers" "github.com/hexops/gotextdiff/span" diff --git a/internal/pkg/githubapi/github.go b/internal/pkg/githubapi/github.go index 6bfadbe4..a7ec6006 100644 --- a/internal/pkg/githubapi/github.go +++ b/internal/pkg/githubapi/github.go @@ -12,7 +12,7 @@ import ( "strings" "text/template" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/shurcooL/githubv4" log "github.com/sirupsen/logrus" cfg "github.com/wayfair-incubator/telefonistka/internal/pkg/configuration" diff --git a/internal/pkg/githubapi/promotion.go b/internal/pkg/githubapi/promotion.go index e24b1ba1..a68ba0b9 100644 --- a/internal/pkg/githubapi/promotion.go +++ b/internal/pkg/githubapi/promotion.go @@ -8,7 +8,7 @@ import ( "strings" "text/template" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" log "github.com/sirupsen/logrus" cfg "github.com/wayfair-incubator/telefonistka/internal/pkg/configuration" prom "github.com/wayfair-incubator/telefonistka/internal/pkg/prometheus" diff --git a/internal/pkg/githubapi/promotion_test.go b/internal/pkg/githubapi/promotion_test.go index 8bda4fcf..f9fed2ba 100644 --- a/internal/pkg/githubapi/promotion_test.go +++ b/internal/pkg/githubapi/promotion_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/go-test/deep" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/migueleliasweb/go-github-mock/src/mock" log "github.com/sirupsen/logrus" cfg "github.com/wayfair-incubator/telefonistka/internal/pkg/configuration" diff --git a/internal/pkg/prometheus/prometheus.go b/internal/pkg/prometheus/prometheus.go index eb313229..d48b1de2 100644 --- a/internal/pkg/prometheus/prometheus.go +++ b/internal/pkg/prometheus/prometheus.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" ) diff --git a/internal/pkg/prometheus/prometheus_test.go b/internal/pkg/prometheus/prometheus_test.go index 6d3ffaf4..557c6430 100644 --- a/internal/pkg/prometheus/prometheus_test.go +++ b/internal/pkg/prometheus/prometheus_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/go-test/deep" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v52/github" "github.com/prometheus/client_golang/prometheus" )