From fe063046f647d3753c44a9e25ee87f6cc210211d Mon Sep 17 00:00:00 2001 From: Michelangelo Mori Date: Fri, 8 Nov 2024 15:28:17 +0100 Subject: [PATCH] Bump go-github to version v66. (#49) --- go.mod | 2 +- go.sum | 4 ++-- pkg/githubapi/githubapi.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 29c4c75..95c6b2a 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ toolchain go1.23.1 require ( github.com/BurntSushi/toml v1.4.0 - github.com/google/go-github/v61 v61.0.0 + github.com/google/go-github/v66 v66.0.0 github.com/package-url/packageurl-go v0.1.3 github.com/stretchr/testify v1.9.0 golang.org/x/oauth2 v0.23.0 diff --git a/go.sum b/go.sum index cce192f..99231f4 100644 --- a/go.sum +++ b/go.sum @@ -6,8 +6,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go= -github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY= +github.com/google/go-github/v66 v66.0.0 h1:ADJsaXj9UotwdgK8/iFZtv7MLc8E8WBl62WLd/D/9+M= +github.com/google/go-github/v66 v66.0.0/go.mod h1:+4SO9Zkuyf8ytMj0csN1NR/5OTR+MfqPp8P8dVlcvY4= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/nozzle/throttler v0.0.0-20180817012639-2ea982251481 h1:Up6+btDp321ZG5/zdSLo48H9Iaq0UQGthrhWC6pCxzE= diff --git a/pkg/githubapi/githubapi.go b/pkg/githubapi/githubapi.go index dd91ca3..a87bd25 100644 --- a/pkg/githubapi/githubapi.go +++ b/pkg/githubapi/githubapi.go @@ -20,7 +20,7 @@ package githubapi import ( "context" - "github.com/google/go-github/v61/github" // Make sure to use the version of go-github you need + "github.com/google/go-github/v66/github" // Make sure to use the version of go-github you need "golang.org/x/oauth2" )