Skip to content

Commit 50cfa28

Browse files
authored
Merge pull request #172735 from Homebrew/SMillerDev-patch-1
fix: use --casks for scheduled info
2 parents 91345b9 + 7e77af6 commit 50cfa28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scheduled.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
casks="$(find "$(brew --repo "${TAP}")/Casks" -type f | shuf -n "${TEST_COUNT}" | xargs -I{} basename {} .rb)"
4444
# shellcheck disable=SC2086
4545
json="$(
46-
brew info --json=v2 $casks |
46+
brew info --json=v2 --casks $casks |
4747
jq --compact-output '[.casks[] | select(.deprecated == false and .disabled == false) | .full_token]'
4848
)"
4949
echo "json=${json}" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)