We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8808131 commit 1c9324bCopy full SHA for 1c9324b
.github/workflows/scan-updates.yml
@@ -61,7 +61,8 @@ jobs:
61
62
if [ "$(echo "$updates" | jq 'length')" -gt 0 ]; then
63
echo "has_updates=true" >> $GITHUB_OUTPUT
64
- echo "updates=$updates" >> $GITHUB_OUTPUT
+ # Compact JSON to single line for GitHub Actions output
65
+ echo "updates=$(echo "$updates" | jq -c '.')" >> $GITHUB_OUTPUT
66
67
echo ""
68
echo "📦 Updates detected:"
0 commit comments