You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: github/private_registries.go
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,7 @@ type UpdateOrganizationPrivateRegistry struct {
234
234
235
235
// ListOrganizationPrivateRegistries lists private registries for an organization.
236
236
//
237
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#list-private-registries-for-an-organization
237
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#list-private-registries-for-an-organization
238
238
//
239
239
//meta:operation GET /orgs/{org}/private-registries
@@ -259,7 +259,7 @@ func (s *PrivateRegistriesService) ListOrganizationPrivateRegistries(ctx context
259
259
260
260
// CreateOrganizationPrivateRegistry creates a private registry configuration with an encrypted value for an organization.
261
261
//
262
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#create-a-private-registry-for-an-organization
262
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#create-a-private-registry-for-an-organization
263
263
//
264
264
//meta:operation POST /orgs/{org}/private-registries
@@ -280,7 +280,7 @@ func (s *PrivateRegistriesService) CreateOrganizationPrivateRegistry(ctx context
280
280
281
281
// GetOrganizationPrivateRegistriesPublicKey retrieves the public key for encrypting secrets for an organization's private registries.
282
282
//
283
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#get-private-registries-public-key-for-an-organization
283
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#get-private-registries-public-key-for-an-organization
284
284
//
285
285
//meta:operation GET /orgs/{org}/private-registries/public-key
@@ -302,7 +302,7 @@ func (s *PrivateRegistriesService) GetOrganizationPrivateRegistriesPublicKey(ctx
302
302
// GetOrganizationPrivateRegistry gets a specific private registry for an organization.
303
303
// The `name` parameter is the name of the private registry to retrieve. It is the same as PrivateRegistry.Name.
304
304
//
305
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#get-a-private-registry-for-an-organization
305
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#get-a-private-registry-for-an-organization
306
306
//
307
307
//meta:operation GET /orgs/{org}/private-registries/{secret_name}
@@ -325,7 +325,7 @@ func (s *PrivateRegistriesService) GetOrganizationPrivateRegistry(ctx context.Co
325
325
// UpdateOrganizationPrivateRegistry updates a specific private registry for an organization.
326
326
// The `name` parameter is the name of the private registry to update. It is the same as PrivateRegistry.Name.
327
327
//
328
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#update-a-private-registry-for-an-organization
328
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#update-a-private-registry-for-an-organization
@@ -342,7 +342,7 @@ func (s *PrivateRegistriesService) UpdateOrganizationPrivateRegistry(ctx context
342
342
// DeleteOrganizationPrivateRegistry deletes a specific private registry for an organization.
343
343
// The `name` parameter is the name of the private registry to delete. It is the same as PrivateRegistry.Name.
344
344
//
345
-
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2022-11-28#delete-a-private-registry-for-an-organization
345
+
// GitHub API docs: https://docs.github.com/rest/private-registries/organization-configurations?apiVersion=2026-03-10#delete-a-private-registry-for-an-organization
0 commit comments