diff --git a/Formula/aactl.rb b/Formula/aactl.rb index 61c2d30e..29596172 100644 --- a/Formula/aactl.rb +++ b/Formula/aactl.rb @@ -5,33 +5,33 @@ class Aactl < Formula desc "Vulnerability management tool." homepage "https://github.com/GoogleCloudPlatform/aactl" - version "0.4.2" + version "0.4.3" license "Apache-2.0" on_macos do - url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.2/aactl_0.4.2_darwin_all" - sha256 "0ddbbc66d2b694acaa262a51320a0aea64bdc44d3b0837df06e1ad84f73e093a" + url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.3/aactl_0.4.3_darwin_all" + sha256 "2e6bacc53b90b2e60e18ebb2c05ca5fb8c8d5d8d5b66d14f44c96448a457ad91" def install - bin.install "aactl_0.4.2_darwin_all" => "aactl" + bin.install "aactl_0.4.3_darwin_all" => "aactl" end end on_linux do if Hardware::CPU.intel? - url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.2/aactl_0.4.2_linux_amd64" - sha256 "5fd706bdf768cc094a517d445295698ab5427635d501f5bae22a2ee69b62d693" + url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.3/aactl_0.4.3_linux_amd64" + sha256 "f4630bc181719822ed45d135e63dd491a10f6526a0295186bf26fde1d9fe1a20" def install - bin.install "aactl_0.4.2_linux_amd64" => "aactl" + bin.install "aactl_0.4.3_linux_amd64" => "aactl" end end if Hardware::CPU.arm? && Hardware::CPU.is_64_bit? - url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.2/aactl_0.4.2_linux_arm64" - sha256 "962570288c794529c139c0fc87150412628e392be877181bd9af9f7bbba89f8d" + url "https://github.com/GoogleCloudPlatform/aactl/releases/download/v0.4.3/aactl_0.4.3_linux_arm64" + sha256 "195f921aa68ed8f44a06157c10623302a13496f20a0c50101ad29ff7ab43d718" def install - bin.install "aactl_0.4.2_linux_arm64" => "aactl" + bin.install "aactl_0.4.3_linux_arm64" => "aactl" end end end