Skip to content

Commit

Permalink
clean up output for backend check
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Oct 4, 2024
1 parent 8c11b2d commit 31976ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_outdated_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: Check outdated backend dependencies
run: |
outdated=$(poetry show -oT)
echo "Outdated:\n$outdated"
echo "Outdated:"
echo "$outdated"
filtered_outdated=$(echo "$outdated" | grep -vE 'pyright|ruff' || true)
echo "Filtered:\n$filtered_outdated"
if [ ! -z "$filtered_outdated" ]; then
echo "Outdated dependencies found:"
Expand Down

0 comments on commit 31976ef

Please sign in to comment.