Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trivy 0.53.0 #176068

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Formula/t/trivy.rb
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
class Trivy < Formula
desc "Vulnerability scanner for container images, file systems, and Git repos"
homepage "https://aquasecurity.github.io/trivy/"
url "https://github.com/aquasecurity/trivy/archive/refs/tags/v0.52.2.tar.gz"
sha256 "001b02cdf03da2986001aaa9b21170d1705757f33cc3361fff24fb97de873500"
url "https://github.com/aquasecurity/trivy/archive/refs/tags/v0.53.0.tar.gz"
sha256 "958a5f2ea846f102ca14d3c0627b04117f85c5b35b30ac68119184d13faa791e"
license "Apache-2.0"
head "https://github.com/aquasecurity/trivy.git", branch: "main"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: "850e07b21307690668aee2aa0d6cadfcc731ba1d95c0bdbcaa4d3ba285854521"
sha256 cellar: :any_skip_relocation, arm64_ventura: "948631fad1797b5d6b50adfc93ed165e786c6ce3e7bd6ad124cfa750d5ff2fb7"
sha256 cellar: :any_skip_relocation, arm64_monterey: "01bc15158a918d5247101bdd3336a3ef2d3d875fa20d3cb1147627a983d2697e"
sha256 cellar: :any_skip_relocation, sonoma: "83fd06c1b8e68fae5b431971ca872f5eb61e80813d1c59cd9644045f87d6a6e3"
sha256 cellar: :any_skip_relocation, ventura: "8a9a727284d2212320d3a53500968cfa1eeda059b8bddc6e7dc2837dcbb7b7f8"
sha256 cellar: :any_skip_relocation, monterey: "eb3bc0ef7350957fdfddcaa75e73b916cba7a185a1fb75841ea11a2cdad9e3dc"
sha256 cellar: :any_skip_relocation, x86_64_linux: "6c60d0be4ad32234b48afe4144bcd32a05968dac6b7fb2ccbfccb816991ecc2e"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "8d0c2aa4b33b8c49145d2bcfecb229942cd39811b9aa2190d1f3c33bdddbf37e"
sha256 cellar: :any_skip_relocation, arm64_ventura: "5b625288030eb1d78db8160af257804bb616f90e756f8dfea8fd9876be395c77"
sha256 cellar: :any_skip_relocation, arm64_monterey: "d5e86cd96218a2252a4d631b8e497f13db33f5b8ce03f31613f690853ea5c0cf"
sha256 cellar: :any_skip_relocation, sonoma: "d182bf75aed0cf4e8871fd016018655336879fac144f404c9126d18474261de4"
sha256 cellar: :any_skip_relocation, ventura: "ddbe03f511f8fd3a821a93913432fa2ea41b4d04296e8af27c74184328cf7261"
sha256 cellar: :any_skip_relocation, monterey: "09b00845a16ac562e798a78b04b3796cbeed82fbb7d611f484ac0262cf018fee"
sha256 cellar: :any_skip_relocation, x86_64_linux: "a678633c7ef89ca1465449a7fe880e77c20b0775505670a1f7afba3b62884ef9"
end

depends_on "go" => :build

def install
ldflags = %W[
-s -w
-X github.com/aquasecurity/trivy/pkg/version.ver=#{version}
-X github.com/aquasecurity/trivy/pkg/version/app.ver=#{version}
]
system "go", "build", *std_go_args(ldflags:), "./cmd/trivy"
end
Expand Down
Loading