Skip to content

Commit 8acd8b1

Browse files
authored
Upgrade terraform-provider-github to v6.8.0 (#1043)
This PR was generated via `$ upgrade-provider pulumi/pulumi-github --kind=provider --target-bridge-version=latest --target-version=6.8.0 --allow-missing-docs=true`. --- - Upgrading terraform-provider-github from 6.7.5 to 6.8.0. Fixes #1042
1 parent 49bbc31 commit 8acd8b1

File tree

180 files changed

+7393
-699
lines changed

Some content is hidden

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

180 files changed

+7393
-699
lines changed

provider/cmd/pulumi-resource-github/bridge-metadata.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,32 @@
502502
"committer_email_pattern": {
503503
"maxItemsOne": true
504504
},
505+
"file_extension_restriction": {
506+
"maxItemsOne": true,
507+
"elem": {
508+
"fields": {
509+
"restricted_file_extensions": {
510+
"maxItemsOne": false
511+
}
512+
}
513+
}
514+
},
515+
"file_path_restriction": {
516+
"maxItemsOne": true,
517+
"elem": {
518+
"fields": {
519+
"restricted_file_paths": {
520+
"maxItemsOne": false
521+
}
522+
}
523+
}
524+
},
525+
"max_file_path_length": {
526+
"maxItemsOne": true
527+
},
528+
"max_file_size": {
529+
"maxItemsOne": true
530+
},
505531
"pull_request": {
506532
"maxItemsOne": true
507533
},
@@ -767,6 +793,9 @@
767793
}
768794
}
769795
},
796+
"max_file_path_length": {
797+
"maxItemsOne": true
798+
},
770799
"max_file_size": {
771800
"maxItemsOne": true
772801
},
@@ -885,9 +914,17 @@
885914
"github_user_ssh_key": {
886915
"current": "github:index/userSshKey:UserSshKey",
887916
"majorVersion": 6
917+
},
918+
"github_workflow_repository_permissions": {
919+
"current": "github:index/workflowRepositoryPermissions:WorkflowRepositoryPermissions",
920+
"majorVersion": 6
888921
}
889922
},
890923
"datasources": {
924+
"github_actions_environment_public_key": {
925+
"current": "github:index/getActionsEnvironmentPublicKey:getActionsEnvironmentPublicKey",
926+
"majorVersion": 6
927+
},
891928
"github_actions_environment_secrets": {
892929
"current": "github:index/getActionsEnvironmentSecrets:getActionsEnvironmentSecrets",
893930
"majorVersion": 6,

provider/cmd/pulumi-resource-github/schema.json

Lines changed: 293 additions & 27 deletions
Large diffs are not rendered by default.

provider/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ require (
7777
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
7878
github.com/golang/protobuf v1.5.4 // indirect
7979
github.com/google/go-cmp v0.7.0 // indirect
80-
github.com/google/go-github/v66 v66.0.1-0.20241027130611-9e5757d5a766 // indirect
80+
github.com/google/go-github/v67 v67.0.0 // indirect
8181
github.com/google/go-querystring v1.1.0 // indirect
8282
github.com/google/s2a-go v0.1.7 // indirect
8383
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect

provider/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1849,8 +1849,8 @@ github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
18491849
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
18501850
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
18511851
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
1852-
github.com/google/go-github/v66 v66.0.1-0.20241027130611-9e5757d5a766 h1:Ne77zoI0NHPnZ/GPRzTVsedUUrkrI2UcnS821dfqp28=
1853-
github.com/google/go-github/v66 v66.0.1-0.20241027130611-9e5757d5a766/go.mod h1:+4SO9Zkuyf8ytMj0csN1NR/5OTR+MfqPp8P8dVlcvY4=
1852+
github.com/google/go-github/v67 v67.0.0 h1:g11NDAmfaBaCO8qYdI9fsmbaRipHNWRIU/2YGvlh4rg=
1853+
github.com/google/go-github/v67 v67.0.0/go.mod h1:zH3K7BxjFndr9QSeFibx4lTKkYS3K9nDanoI1NjaOtY=
18541854
github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY=
18551855
github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY=
18561856
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=

sdk/dotnet/ActionsEnvironmentSecret.cs

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Branch.cs

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/BranchDefault.cs

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/Config/Config.cs

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/GetActionsEnvironmentPublicKey.cs

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/dotnet/GetOrganizationCustomRole.cs

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)