Skip to content

Commit

Permalink
fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Oct 5, 2024
1 parent 4e7b266 commit 208c591
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check_outdated_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ jobs:
run: |
raw_outdated=$(/home/runner/.local/share/reflex/bun/bin/bun outdated)
outdated=$(echo "$raw_outdated" | grep -vE '\|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\|' || true)
echo "Outdated:\n$outdated"
echo "Outdated:"
echo "$outdated"
# Ignore 3rd party dependencies that are not updated.
filtered_outdated=$(echo "$outdated" | grep -vE 'Package|@chakra-ui|lucide-react|@splinetool/runtime|ag-grid-react|framer-motion' || true)
Expand All @@ -82,6 +83,6 @@ jobs:
echo "$filtered_outdated"
exit 1
else
echo "All dependencies are up to date. (lucide-react and @chakra-ui/ are ignored)"
echo "All dependencies are up to date. (3rd party packages are ignored)"
fi

0 comments on commit 208c591

Please sign in to comment.