Skip to content

Commit

Permalink
Merge pull request #17282 from SMillerDev/fix/sbom/align_times
Browse files Browse the repository at this point in the history
fix: use UTC for all SBOM times
  • Loading branch information
carlocab committed May 12, 2024
2 parents 71c4bfa + df0bd4c commit 1e4d119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/sbom.rb
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def stable_version

sig { returns(Time) }
def source_modified_time
Time.at(@source_modified_time || 0)
Time.at(@source_modified_time || 0).utc
end

sig { params(val: T.untyped).returns(T.any(String, Symbol)) }
Expand Down

0 comments on commit 1e4d119

Please sign in to comment.