Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
phylum 5.0.0 (#42)
Browse files Browse the repository at this point in the history
Reminder: It is better to wait for the first 3 jobs (2 for
`build-bottles` and 1 for `brew-bottle`) to complete before approving
this PR because the PR will be updated by that 3rd job with a new commit
that updates the formula to include the new bottle `root_url` and
`sha256` values. Additionally, this PR should not be merged to `main`
until _after_ the bottles have been successfully published.

---------

Co-authored-by: Kyle Willmon <[email protected]>
Co-authored-by: Kyle Willmon <[email protected]>
Co-authored-by: Charles Coggins <[email protected]>
Co-authored-by: Kyle Willmon <[email protected]>
  • Loading branch information
5 people authored Apr 13, 2023
1 parent 2f46c8b commit bf5842f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ jobs:
head: "bump-phylum-" + cli_ver_no_v,
base: context.ref,
title: "phylum " + cli_ver_no_v,
body: "Reminder: It is better to wait for the first 4 jobs "
+ "(3 for `build-bottles` and 1 for `brew-bottle`) to "
body: "Reminder: It is better to wait for the first 3 jobs "
+ "(2 for `build-bottles` and 1 for `brew-bottle`) to "
+ "complete before approving this PR because the PR will "
+ "be updated by that 4th job with a new commit that updates "
+ "be updated by that `brew-bottle` job with a new commit that updates "
+ "the formula to include the new bottle `root_url` and `sha256` "
+ "values. Additionally, this PR should not be merged to `main` "
+ "until _after_ the bottles have been successfully published.",
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
with:
debug: true

- run: brew update

- run: brew test-bot --only-cleanup-before

- run: brew test-bot --only-setup
Expand Down
10 changes: 5 additions & 5 deletions Formula/phylum.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
class Phylum < Formula
desc "Software Supply Chain Security CLI"
homepage "https://phylum.io"
url "https://github.com/phylum-dev/cli/archive/refs/tags/v4.8.0.tar.gz"
sha256 "3ee9a92951278c75ae998fb65617ca1f7448983e78e1aecdb0c459a06eb53064"
url "https://github.com/phylum-dev/cli/archive/refs/tags/v5.0.0.tar.gz"
sha256 "ffa03f99abd5702ea6d0cb959eaf3919b68e7e662dd55b1aeffe9c0ab7d3e72b"
license "GPL-3.0-or-later"
head "https://github.com/phylum-dev/cli.git", branch: "main"

bottle do
root_url "https://github.com/phylum-dev/homebrew-cli/releases/download/phylum-4.8.0"
sha256 cellar: :any_skip_relocation, arm64_monterey: "9d52773cf42bc9151c288f4ee85d73b766a75ed1692dd2897b646d4babc42e7f"
sha256 cellar: :any_skip_relocation, monterey: "2c15146254083b33730623021d2b12685feb34d78bdd183b971f020bbbb44744"
root_url "https://github.com/phylum-dev/homebrew-cli/releases/download/phylum-5.0.0"
sha256 cellar: :any_skip_relocation, arm64_monterey: "d72bc2365303072e0bf56c53dacafe76dd6127e485b10a9faad70affd77c373a"
sha256 cellar: :any_skip_relocation, monterey: "fd0816edef0f6bb91f36f2a335bde98ab7da1ba416adfeab3b03f1982d29806c"
end

depends_on "rust" => :build
Expand Down

0 comments on commit bf5842f

Please sign in to comment.