We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c7adf commit 44de11eCopy full SHA for 44de11e
.github/workflows/ci.yml
@@ -59,6 +59,14 @@ jobs:
59
php-version: ${{ matrix.php }}
60
tools: flex
61
62
+ - name: Ignore specific Composer audit advisory
63
+ run: |
64
+ if [[ "${{ matrix.php }}" == "7.1" ]]; then
65
+ echo "COMPOSER_AUDIT_BLOCK_INSECURE=0" >> $GITHUB_ENV
66
+ else
67
+ composer config --global audit.ignore "PKSA-w2tw-kmfg-rt9s"
68
+ fi
69
+
70
- name: Install dependencies
71
uses: ramsey/composer-install@v2
72
env:
0 commit comments