porting all github actions from bluesky-social/indigo to tangled CI

implement struct renames

Changed files
+5 -5
atproto
+2 -2
atproto/auth/http_test.go
··· 86 dir := identity.NewMockDirectory() 87 dir.Insert(identity.Identity{ 88 DID: iss, 89 - Keys: map[string]identity.Key{ 90 - "atproto": identity.Key{ 91 Type: "Multikey", 92 PublicKeyMultibase: pub.Multibase(), 93 },
··· 86 dir := identity.NewMockDirectory() 87 dir.Insert(identity.Identity{ 88 DID: iss, 89 + Keys: map[string]identity.IdentityKey{ 90 + "atproto": { 91 Type: "Multikey", 92 PublicKeyMultibase: pub.Multibase(), 93 },
+2 -2
atproto/auth/jwt_test.go
··· 100 dir := identity.NewMockDirectory() 101 dir.Insert(identity.Identity{ 102 DID: iss, 103 - Keys: map[string]identity.Key{ 104 - "atproto": identity.Key{ 105 Type: "Multikey", 106 PublicKeyMultibase: pub.Multibase(), 107 },
··· 100 dir := identity.NewMockDirectory() 101 dir.Insert(identity.Identity{ 102 DID: iss, 103 + Keys: map[string]identity.IdentityKey{ 104 + "atproto": { 105 Type: "Multikey", 106 PublicKeyMultibase: pub.Multibase(), 107 },
+1 -1
atproto/client/password_auth_test.go
··· 121 dir.Insert(identity.Identity{ 122 DID: "did:web:account.example.com", 123 Handle: "user1.example.com", 124 - Services: map[string]identity.Service{ 125 "atproto_pds": { 126 Type: "AtprotoPersonalDataServer", 127 URL: srv.URL,
··· 121 dir.Insert(identity.Identity{ 122 DID: "did:web:account.example.com", 123 Handle: "user1.example.com", 124 + Services: map[string]identity.ServiceEndpoint{ 125 "atproto_pds": { 126 Type: "AtprotoPersonalDataServer", 127 URL: srv.URL,