Skip to content

Commit

Permalink
chore(deps): Update module github.com/google/go-github/v63 to v64
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 29, 2024
1 parent cbb731d commit 5f1f84b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/gcloud"
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/tft"
cftutils "github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/utils"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/stretchr/testify/assert"
"github.com/terraform-google-modules/terraform-google-bootstrap/test/integration/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ toolchain go1.22.6

require (
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.16.1
github.com/google/go-github/v63 v63.0.0
github.com/google/go-github/v64 v64.0.0
github.com/gruntwork-io/terratest v0.47.0
github.com/stretchr/testify v1.9.0
github.com/xanzy/go-gitlab v0.107.0
Expand Down
4 changes: 2 additions & 2 deletions test/integration/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
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/v63 v63.0.0 h1:13xwK/wk9alSokujB9lJkuzdmQuVn2QCPeck76wR3nE=
github.com/google/go-github/v63 v63.0.0/go.mod h1:IqbcrgUmIcEaioWrGYei/09o+ge5vhffGOcxrO0AfmA=
github.com/google/go-github/v64 v64.0.0 h1:4G61sozmY3eiPAjjoOHponXDBONm+utovTKbyUb2Qdg=
github.com/google/go-github/v64 v64.0.0/go.mod h1:xB3vqMQNdHzilXBiO2I+M7iEFtHf+DP/omBOv6tQzVo=
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/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/git"
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/tft"
cftutils "github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/utils"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/gruntwork-io/terratest/modules/logger"
"github.com/stretchr/testify/assert"
"github.com/terraform-google-modules/terraform-google-bootstrap/test/integration/utils"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ import (
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/gcloud"
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/tft"
cftutils "github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/utils"
"github.com/terraform-google-modules/terraform-google-bootstrap/test/integration/utils"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/stretchr/testify/assert"
"github.com/terraform-google-modules/terraform-google-bootstrap/test/integration/utils"
)


type GitHubClient struct {
t *testing.T
client *github.Client
Expand Down Expand Up @@ -97,7 +96,7 @@ func TestTFCloudBuildBuilderGitHub(t *testing.T) {
// Testing the module's feature of appending the ".git" suffix if it's missing
repoURL := strings.TrimSuffix(client.repository.GetCloneURL(), ".git")
vars := map[string]interface{}{
"github_pat": githubPAT,
"github_pat": githubPAT,
"repository_uri": repoURL,
}
bpt := tft.NewTFBlueprintTest(t, tft.WithVars(vars))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/git"
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/tft"
cftutils "github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/utils"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/stretchr/testify/assert"
"github.com/terraform-google-modules/terraform-google-bootstrap/test/integration/utils"
)
Expand Down Expand Up @@ -97,7 +97,7 @@ func TestCloudBuildWorkspaceSimpleGitHub(t *testing.T) {
// Testing the module's feature of appending the ".git" suffix if it's missing
repoURL := strings.TrimSuffix(client.repository.GetCloneURL(), ".git")
vars := map[string]interface{}{
"github_pat": githubPAT,
"github_pat": githubPAT,
"repository_uri": repoURL,
}
bpt := tft.NewTFBlueprintTest(t, tft.WithVars(vars))
Expand Down

0 comments on commit 5f1f84b

Please sign in to comment.