Skip to content

Commit 83b83d6

Browse files
committed
fix: use gmdate for UTC timestamp in createCheckRun
1 parent 0c40bfa commit 83b83d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/VCS/Adapter/Git/GitHub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ public function createCheckRun(string $owner, string $repositoryName, string $he
885885
'head_sha' => $headSha,
886886
'status' => 'completed',
887887
'conclusion' => $conclusion,
888-
'completed_at' => date('Y-m-d\TH:i:s\Z'),
888+
'completed_at' => gmdate('Y-m-d\TH:i:s\Z'),
889889
'output' => [
890890
'title' => $title,
891891
'summary' => $summary,

0 commit comments

Comments
 (0)