Skip to content

Commit 929da2c

Browse files
committed
Fix all 'brew style simnalamburt/x' warnings
1 parent 1ffabe6 commit 929da2c

8 files changed

+10
-10
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
2020
PULL_REQUEST: ${{ github.event.pull_request.number }}
21-
run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
21+
run: brew pr-pull --debug --tap="${GITHUB_REPOSITORY}" "${PULL_REQUEST}"
2222

2323
- name: Push commits
2424
uses: Homebrew/actions/git-try-push@master
@@ -30,4 +30,4 @@ jobs:
3030
if: github.event.pull_request.head.repo.fork == false
3131
env:
3232
BRANCH: ${{ github.event.pull_request.head.ref }}
33-
run: git push --delete origin $BRANCH
33+
run: git push --delete origin "${BRANCH}"

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Cache Homebrew Bundler RubyGems
1919
id: cache
20-
uses: actions/cache@v1
20+
uses: actions/cache@v4
2121
with:
2222
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
2323
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}

Formula/elb-log-parser.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ElbLogParser < Formula
22
desc "Simple AWS ELB log parser which parses Classic LB and ALB logs into JSONs"
33
homepage "https://github.com/simnalamburt/elb-log-parser"
4-
url "https://github.com/simnalamburt/elb-log-parser/archive/v0.2.3.tar.gz"
4+
url "https://github.com/simnalamburt/elb-log-parser/archive/refs/tags/v0.2.3.tar.gz"
55
sha256 "0caf5b3a0d8cdaac72c4147807e34deb68ed76846a96fff962c9ea33c187c4cf"
66
license "AGPL-3.0-or-later"
77

Formula/haskell-stack.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class HaskellStack < Formula
44
license "BSD-3-Clause"
55

66
stable do
7-
url "https://github.com/commercialhaskell/stack/archive/v2.7.3.tar.gz"
7+
url "https://github.com/commercialhaskell/stack/archive/refs/tags/v2.7.3.tar.gz"
88
sha256 "37f4bc0177534782609ec3a67ec413548d3f2cabff7c4c0bc8a92a36e49c6877"
99

1010
# - Fixed building from source.

Formula/podman-apple-silicon.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class PodmanAppleSilicon < Formula
3535
conflicts_with "podman", because: "podman also ships a podman binary, but without apple silicon patch"
3636

3737
resource "gvproxy" do
38-
url "https://github.com/containers/gvisor-tap-vsock/archive/v0.1.0.tar.gz"
38+
url "https://github.com/containers/gvisor-tap-vsock/archive/refs/tags/v0.1.0.tar.gz"
3939
sha256 "e1e1bec2fc42039da1ae68d382d4560a27c04bbe2aae535837294dd6773e88e0"
4040
end
4141

Formula/ra-multiplex.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class RaMultiplex < Formula
2-
desc "Share one rust-analyzer server instance between multiple LSP clients to save resources"
2+
desc "Share one rust-analyzer instance between multiple LSP clients to save resources"
33
homepage "https://github.com/pr2502/ra-multiplex"
4-
url "https://github.com/pr2502/ra-multiplex/archive/v0.2.5.tar.gz"
4+
url "https://github.com/pr2502/ra-multiplex/archive/refs/tags/v0.2.5.tar.gz"
55
sha256 "c24a7e277adce9bbfb86641905d75f166e46459cf4e5b5f3aaa7456b052392dc"
66
license "MIT"
77

Formula/totp.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Totp < Formula
22
desc "Simple TOTP CLI, powered by keychain of macOS"
33
homepage "https://github.com/simnalamburt/macos-totp-cli"
4-
url "https://github.com/simnalamburt/macos-totp-cli/archive/v1.0.0.tar.gz"
4+
url "https://github.com/simnalamburt/macos-totp-cli/archive/refs/tags/v1.0.0.tar.gz"
55
sha256 "afb947ac9b0cb227a302e81f6faf1f9c8bbadc169bba2445d9104cbb7200eeb2"
66
license "Apache-2.0" # Actually it's (Apache-2.0 OR MIT). Commenting it out due do false-alarm of "brew audit"
77

Formula/uniqs.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Uniqs < Formula
22
desc "`uniq(1)` alternative with streaming support"
33
homepage "https://github.com/simnalamburt/uniqs"
4-
url "https://github.com/simnalamburt/uniqs/archive/v0.1.0.tar.gz"
4+
url "https://github.com/simnalamburt/uniqs/archive/refs/tags/v0.1.0.tar.gz"
55
sha256 "cf2e4768d3d558d8f5f26cdd28dd654b8699d9b7718ba7339f3b86ef97683d88"
66
license "Apache-2.0" # Actually it's (Apache-2.0 OR MIT) but `brew audit` doesn't support dual licensing
77

0 commit comments

Comments
 (0)