From eb8946ac9cd604a043abd3456f607669dcc5c78f Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Fri, 12 Apr 2024 12:12:30 -0700 Subject: [PATCH] remove abandoned package override --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e45f6620..0b70ecd85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: coverage: ${{ matrix.coverage }} - name: Check for abandoned dependencies if: matrix.os == 'ubuntu-22.04' - run: cat composer.lock | jq '.packages[] | select(.abandoned and .name != "php-http/message-factory")' | grep -q ^ && echo 'Abandoned Composer packages found' && exit 1 || exit 0 + run: cat composer.lock | jq '.packages[] | select(.abandoned)' | grep -q ^ && echo 'Abandoned Composer packages found' && exit 1 || exit 0 - name: Check for insecure dependencies run: composer audit - name: Composer install