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

sigscan audit fix #34

Merged
merged 6 commits into from
May 10, 2024
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
3 changes: 1 addition & 2 deletions Formula/sigscan.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
class Sigscan < Formula

Check failure on line 1 in Formula/sigscan.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

stable sha256 changed without the url/version also changing; please create an issue upstream to rule out malicious circumstances and to find out why the file changed.
desc "Inspect container images and other artifacts for signatures"
homepage "https://github.com/venafi/sigscan"
url "https://github.com/venafi/sigscan/archive/refs/tags/v0.3.0.tar.gz"
version "0.3.0"
sha256 "29c47a8274b9452b510ea21a827ab033e2eeb01abf2abf3bcaea0319e572e8d2"
license "Apache-2.0"
head "https://github.com/venafi/sigscan.git", tag: "v0.3.0"

on_macos do
if Hardware::CPU.intel?
Expand All @@ -20,7 +19,7 @@
end
end

def install

Check warning on line 22 in Formula/sigscan.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

`brew install --verbose --build-bottle venafi/tap/sigscan` failed on macOS Sonoma (14) on Apple Silicon!

==> Fetching venafi/tap/sigscan ==> Downloading https://github.com/venafi/sigscan/archive/refs/tags/v0.3.0.tar.gz Already downloaded: /Users/runner/Library/Caches/Homebrew/downloads/3b3ddd4acd952ab8309bf3bffa58e42bd356f081e08351cbd45808c61d267d6d--sigscan-0.3.0.tar.gz ==> Verifying checksum for '3b3ddd4acd952ab8309bf3bffa58e42bd356f081e08351cbd45808c61d267d6d--sigscan-0.3.0.tar.gz' ==> Installing sigscan from venafi/tap /usr/bin/env tar --extract --no-same-owner --file /Users/runner/Library/Caches/Homebrew/downloads/3b3ddd4acd952ab8309bf3bffa58e42bd356f081e08351cbd45808c61d267d6d--sigscan-0.3.0.tar.gz --directory /private/tmp/homebrew-unpack20240510-8574-f6oxtf /usr/bin/env cp -pR /private/tmp/homebrew-unpack20240510-8574-f6oxtf/sigscan-0.3.0/. /private/tmp/sigscan-20240510-8574-nzzrxf/sigscan-0.3.0 Error: An exception occurred within a child process: Errno::ENOENT: No such file or directory - sigscan-darwin-amd64 ::error::An exception occurred within a child process:%0A Errno::ENOENT: No such file or directory - sigscan-darwin-amd64%0A
cpu = "amd64"
os = OS.mac? ? "darwin" : "linux"
bin.install "sigscan-#{os}-#{cpu}" => "sigscan"
Expand Down
3 changes: 1 addition & 2 deletions Formula/vsign.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
desc "Venafi CodeSign Protect Golang CLI and SDK"
homepage "https://github.com/venafi/vsign"
url "https://github.com/Venafi/vsign/archive/refs/tags/v1.0.2.tar.gz"
version "1.0.2"
sha256 "1be800412a20dc7258544f282c765c2dc5d17beac6dd3fb5b82bcc4fb3ef3c5f"
license "Apache-2.0"
head "https://github.com/venafi/vsign.git", tag: "v1.0.2"

on_macos do
if Hardware::CPU.intel?
Expand All @@ -20,7 +19,7 @@
end
end

def install

Check warning on line 22 in Formula/vsign.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

`brew install --verbose --build-bottle venafi/tap/vsign` failed on macOS Sonoma (14) on Apple Silicon!

==> Fetching venafi/tap/vsign ==> Downloading https://github.com/Venafi/vsign/archive/refs/tags/v1.0.2.tar.gz Already downloaded: /Users/runner/Library/Caches/Homebrew/downloads/ff339106e0a111f9a0d4dc87e5e6a9abfacd955c0b5a17d5e236e0be6e24557b--vsign-1.0.2.tar.gz ==> Verifying checksum for 'ff339106e0a111f9a0d4dc87e5e6a9abfacd955c0b5a17d5e236e0be6e24557b--vsign-1.0.2.tar.gz' ==> Installing vsign from venafi/tap /usr/bin/env tar --extract --no-same-owner --file /Users/runner/Library/Caches/Homebrew/downloads/ff339106e0a111f9a0d4dc87e5e6a9abfacd955c0b5a17d5e236e0be6e24557b--vsign-1.0.2.tar.gz --directory /private/tmp/homebrew-unpack20240510-9599-wqxqmp /usr/bin/env cp -pR /private/tmp/homebrew-unpack20240510-9599-wqxqmp/vsign-1.0.2/. /private/tmp/vsign-20240510-9599-8w315a/vsign-1.0.2 Error: An exception occurred within a child process: Errno::ENOENT: No such file or directory - vsign-darwin-amd64 ::error::An exception occurred within a child process:%0A Errno::ENOENT: No such file or directory - vsign-darwin-amd64%0A
cpu = "amd64"
os = OS.mac? ? "darwin" : "linux"
bin.install "vsign-#{os}-#{cpu}" => "vsign"
Expand Down
Loading