Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GHA] Set COMPOSER_NO_AUDIT #47353

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
echo "::group::install phpunit"
./phpunit install
echo "::endgroup::"
env:
COMPOSER_NO_AUDIT: 1

- name: Run tests
run: ./phpunit --group integration -v
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/intl-data-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ jobs:
echo "::group::install phpunit"
./phpunit install
echo "::endgroup::"
env:
COMPOSER_NO_AUDIT: 1

- name: Report the ICU version
run: uconv -V && php -i | grep 'ICU version'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
export COMPOSER_ROOT_VERSION=$(grep ' VERSION = ' src/Symfony/Component/HttpKernel/Kernel.php | grep -P -o '[0-9]+\.[0-9]+').x-dev
composer remove --dev --no-update --no-interaction symfony/phpunit-bridge
composer require --no-progress --ansi psalm/phar phpunit/phpunit:^9.5 php-http/discovery psr/event-dispatcher mongodb/mongodb
env:
COMPOSER_NO_AUDIT: 1

- name: Generate Psalm baseline
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ jobs:
echo "::group::install phpunit"
./phpunit install
echo "::endgroup::"
env:
COMPOSER_NO_AUDIT: 1

- name: Patch return types
if: "matrix.php == '8.1' && ! matrix.mode"
Expand Down