diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml index d7aa256b..b40121a8 100644 --- a/.github/workflows/dependency-updates.yml +++ b/.github/workflows/dependency-updates.yml @@ -22,7 +22,7 @@ jobs: cd ./php composer update set +e - ALL_LINES="$(composer outdated | grep -v "psr/container")" + ALL_LINES="$(composer outdated | grep -v "psr/container\|^$\|Direct dependencies:\|Everything up to date\|Transitive dependencies:")" set -e while [ -n "$ALL_LINES" ]; do CURRENT_LINE="$(echo "$ALL_LINES" | head -1)"