Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions Formula/veracode-cli.rb
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
class VeracodeCli < Formula
desc "Command-line tool for testing application security with Veracode"
homepage "https://www.veracode.com"
version "2.47.0"
version "2.48.0"
license "MIT"
if OS.mac?
if Hardware::CPU.arm?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_macosx_arm64.tar.gz"
sha256 "d01bb4d1cc18f7a1f71c19a9c18e96dbcee7295d7773c52e37de9e6415179370"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.48.0_macosx_arm64.tar.gz"
sha256 "3f2ca8b39e1c6dbdb34b2520a886f8649e999d045e72d50a5babe54127362787"
elsif Hardware::CPU.intel?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_macosx_x86.tar.gz"
sha256 "2db882bb358648ef22fde044a5b4fcc7b94649453e51fbc03a0f91ef7954c5a2"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.48.0_macosx_x86.tar.gz"
sha256 "a43c0569900d8524b537f3030734cd817e158e9839fc58155b6b3c3631bb36dd"
end
elsif OS.linux?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_linux_x86.tar.gz"
sha256 "709cb34f549823f84fd8f1bfff1a73fb03bb01966296269f2f1be353c8f8c3eb"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.48.0_linux_x86.tar.gz"
sha256 "3f65dfe296ca06d9cf38f9ddbb19eaac943ed9714eb05127e30aff4fd86be32d"
end
def install

Check warning on line 18 in Formula/veracode-cli.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

`brew install --verbose --formula --build-bottle veracode/tap/veracode-cli` failed on macOS Sonoma (14) on Apple Silicon!

::error::Failed to download resource "veracode-cli (2.48.0)"%0ADownload failed: https://tools.veracode.com/veracode-cli/veracode-cli_2.48.0_macosx_arm64.tar.gz%0Acurl: (56) The requested URL returned error: 404%0A

Check warning on line 18 in Formula/veracode-cli.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

`brew install --verbose --formula --build-bottle veracode/tap/veracode-cli` failed on macOS Sonoma (14) on Apple Silicon!

/opt/homebrew/Cellar/veracode-cli/2.48.0: 5 files, 188.1MB, built in 1 second
bin.install "veracode"
end
test do
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
class VeracodeCliAT2430 < Formula
class VeracodeCliAT2470 < Formula
desc "Command-line tool for testing application security with Veracode"
homepage "https://www.veracode.com"
version "2.43.0"
version "2.47.0"
license "MIT"
if OS.mac?
if Hardware::CPU.arm?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.43.0_macosx_arm64.tar.gz"
sha256 "3c0356d6b58a7ce1be0108b7d69f6289be5fd946e171df87bfd42e1d00ba32e7"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_macosx_arm64.tar.gz"
sha256 "d01bb4d1cc18f7a1f71c19a9c18e96dbcee7295d7773c52e37de9e6415179370"
elsif Hardware::CPU.intel?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.43.0_macosx_x86.tar.gz"
sha256 "8c477b34f66f8bad04defa72170a8185ee8e2bd80233d7db1b13d9027f951a97"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_macosx_x86.tar.gz"
sha256 "2db882bb358648ef22fde044a5b4fcc7b94649453e51fbc03a0f91ef7954c5a2"
end
elsif OS.linux?
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.43.0_linux_x86.tar.gz"
sha256 "b8cb66eec620e27a0f1bfee0bf5de4a507756780620e6fc288d606472d96ce3b"
url "https://tools.veracode.com/veracode-cli/veracode-cli_2.47.0_linux_x86.tar.gz"
sha256 "709cb34f549823f84fd8f1bfff1a73fb03bb01966296269f2f1be353c8f8c3eb"
end
def install
bin.install "veracode"
Expand Down
Loading