Skip to content

Commit 926bafb

Browse files
authored
Merge branch 'main' into escape-environment
2 parents d559e25 + d486f73 commit 926bafb

File tree

269 files changed

+895
-985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+895
-985
lines changed

.github/workflows/immediate-response.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
1919

2020
- name: Respond to issue or PR
21-
uses: peter-evans/create-or-update-comment@223779bc560943cb8f2aa0484a7c225c1585c597
21+
uses: peter-evans/create-or-update-comment@1f6c51492b7d8e91122ece56e2eb7ed38df14079
2222
with:
2323
issue-number: ${{ steps.extract.outputs.NUMBER }}
2424
body: >

github/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"time"
1111

12-
"github.com/google/go-github/v54/github"
12+
"github.com/google/go-github/v55/github"
1313
"github.com/hashicorp/terraform-plugin-sdk/helper/logging"
1414
"github.com/shurcooL/githubv4"
1515
"golang.org/x/oauth2"
@@ -94,7 +94,7 @@ func (c *Config) NewRESTClient(client *http.Client) (*github.Client, error) {
9494
uv3.Path = uv3.Path + "api/v3/"
9595
}
9696

97-
v3client, err := github.NewEnterpriseClient(uv3.String(), "", client)
97+
v3client, err := github.NewClient(client).WithEnterpriseURLs(uv3.String(), "")
9898
if err != nil {
9999
return nil, err
100100
}

github/data_source_github_actions_environment_secrets.go

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

8-
"github.com/google/go-github/v54/github"
8+
"github.com/google/go-github/v55/github"
99

1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1111
)

github/data_source_github_actions_environment_variables.go

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

8-
"github.com/google/go-github/v54/github"
8+
"github.com/google/go-github/v55/github"
99

1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1111
)

github/data_source_github_actions_organization_secrets.go

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

6-
"github.com/google/go-github/v54/github"
6+
"github.com/google/go-github/v55/github"
77

88
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
99
)

github/data_source_github_actions_organization_variables.go

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

6-
"github.com/google/go-github/v54/github"
6+
"github.com/google/go-github/v55/github"
77

88
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
99
)

github/data_source_github_actions_secrets.go

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

7-
"github.com/google/go-github/v54/github"
7+
"github.com/google/go-github/v55/github"
88

99
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1010
)

github/data_source_github_actions_variables.go

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

7-
"github.com/google/go-github/v54/github"
7+
"github.com/google/go-github/v55/github"
88

99
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1010
)

github/data_source_github_app_token_test.go

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

10-
"github.com/google/go-github/v54/github"
10+
"github.com/google/go-github/v55/github"
1111
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1212
"github.com/stretchr/testify/assert"
1313
)

github/data_source_github_branch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"net/http"
77

8-
"github.com/google/go-github/v54/github"
8+
"github.com/google/go-github/v55/github"
99
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1010
)
1111

0 commit comments

Comments
 (0)