From 7de4a9a86a45cac4b653e3dd354da6e9758eb506 Mon Sep 17 00:00:00 2001 From: fa-sharp Date: Fri, 20 Feb 2026 01:14:20 -0500 Subject: [PATCH] Update dependency-check.yml --- .github/workflows/dependency-check.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index 5c4ea13..8cdf263 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -61,14 +61,8 @@ jobs: # Check if any dependencies were actually upgraded if echo "$UPGRADE_OUTPUT" | grep -E "name\s+old req\s+compatible\s+latest\s+new req" > /dev/null; then - # Check if any version actually changed (old req != new req) - if echo "$UPGRADE_OUTPUT" | tail -n +3 | awk '{if ($2 != $5 && $2 != "" && $5 != "") exit 0} END {exit 1}'; then - echo "has_updates=true" >> $GITHUB_OUTPUT - echo "✅ Updates detected" - else - echo "has_updates=false" >> $GITHUB_OUTPUT - echo "ℹ️ No updates available" - fi + echo "has_updates=true" >> $GITHUB_OUTPUT + echo "✅ Updates detected" else echo "has_updates=false" >> $GITHUB_OUTPUT echo "ℹ️ No updates available"