Skip to content

Commit 4b8daca

Browse files
authored
Merge pull request #61 from chainguard-dev/create-pull-request/patch
Export mono/public/terraform-infra-common: refs/heads/main
2 parents beeb99a + 50f2e1e commit 4b8daca

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/chainguard-dev/clog v1.8.0
1616
github.com/cloudevents/sdk-go/v2 v2.16.2
1717
github.com/coreos/go-oidc/v3 v3.17.0
18-
github.com/go-git/go-git/v5 v5.17.1
18+
github.com/go-git/go-git/v5 v5.16.5
1919
github.com/google/go-cmp v0.7.0
2020
github.com/google/go-github/v84 v84.0.0
2121
github.com/jonboulle/clockwork v0.5.0
@@ -76,7 +76,7 @@ require (
7676
github.com/envoyproxy/protoc-gen-validate v1.3.0 // indirect
7777
github.com/felixge/httpsnoop v1.0.4 // indirect
7878
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
79-
github.com/go-git/go-billy/v5 v5.8.0 // indirect
79+
github.com/go-git/go-billy/v5 v5.6.2 // indirect
8080
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
8181
github.com/go-logr/logr v1.4.3 // indirect
8282
github.com/go-logr/stdr v1.2.2 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,12 @@ github.com/gliderlabs/ssh v0.3.8 h1:a4YXD1V7xMF9g5nTkdfnja3Sxy1PVDCj1Zg4Wb8vY6c=
150150
github.com/gliderlabs/ssh v0.3.8/go.mod h1:xYoytBv1sV0aL3CavoDuJIQNURXkkfPA/wxQ1pL1fAU=
151151
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI=
152152
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic=
153-
github.com/go-git/go-billy/v5 v5.8.0 h1:I8hjc3LbBlXTtVuFNJuwYuMiHvQJDq1AT6u4DwDzZG0=
154-
github.com/go-git/go-billy/v5 v5.8.0/go.mod h1:RpvI/rw4Vr5QA+Z60c6d6LXH0rYJo0uD5SqfmrrheCY=
153+
github.com/go-git/go-billy/v5 v5.6.2 h1:6Q86EsPXMa7c3YZ3aLAQsMA0VlWmy43r6FHqa/UNbRM=
154+
github.com/go-git/go-billy/v5 v5.6.2/go.mod h1:rcFC2rAsp/erv7CMz9GczHcuD0D32fWzH+MJAU+jaUU=
155155
github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4=
156156
github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII=
157-
github.com/go-git/go-git/v5 v5.17.1 h1:WnljyxIzSj9BRRUlnmAU35ohDsjRK0EKmL0evDqi5Jk=
158-
github.com/go-git/go-git/v5 v5.17.1/go.mod h1:pW/VmeqkanRFqR6AljLcs7EA7FbZaN5MQqO7oZADXpo=
157+
github.com/go-git/go-git/v5 v5.16.5 h1:mdkuqblwr57kVfXri5TTH+nMFLNUxIj9Z7F5ykFbw5s=
158+
github.com/go-git/go-git/v5 v5.16.5/go.mod h1:QOMLpNf1qxuSY4StA/ArOdfFR2TrKEjJiye2kel2m+M=
159159
github.com/go-jose/go-jose/v4 v4.1.4 h1:moDMcTHmvE6Groj34emNPLs/qtYXRVcd6S7NHbHz3kA=
160160
github.com/go-jose/go-jose/v4 v4.1.4/go.mod h1:x4oUasVrzR7071A4TnHLGSPpNOm2a21K9Kf04k1rs08=
161161
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=

modules/github-events/schemas/event_types.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ type WorkflowRun struct {
170170
Event bigquery.NullString `json:"event,omitempty" bigquery:"event"`
171171
Status bigquery.NullString `json:"status,omitempty" bigquery:"status"`
172172
RunStartedAt bigquery.NullTimestamp `json:"run_started_at,omitempty" bigquery:"run_started_at"`
173+
CompletedAt bigquery.NullTimestamp `json:"completed_at,omitempty" bigquery:"completed_at"`
173174

174175
// success, failure, cancelled, etc.
175176
Conclusion bigquery.NullString `json:"conclusion,omitempty" bigquery:"conclusion"`

modules/github-events/schemas/workflow_run.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
"name": "run_started_at",
108108
"type": "TIMESTAMP"
109109
},
110+
{
111+
"name": "completed_at",
112+
"type": "TIMESTAMP"
113+
},
110114
{
111115
"name": "conclusion",
112116
"type": "STRING"

0 commit comments

Comments
 (0)