diff --git a/magento-integration-tests/entrypoint.sh b/magento-integration-tests/entrypoint.sh index b872217..2a9e6c0 100755 --- a/magento-integration-tests/entrypoint.sh +++ b/magento-integration-tests/entrypoint.sh @@ -85,6 +85,9 @@ if [[ "$MAGENTO_VERSION" == "2.4.4" ]]; then composer require monolog/monolog:2.6.0 --no-update fi +echo "Ignore known security advisories" +composer config --json audit.ignore '{"PKSA-z3gr-8qht-p93v": "Ignored for CI", "PKSA-rkkf-636k-qjb3": "Ignored for CI", "PKSA-wws7-mr54-jsny": "Ignored for CI"}' + echo "Run installation" COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction --no-progress diff --git a/magento-quick-integration-tests/entrypoint.sh b/magento-quick-integration-tests/entrypoint.sh index aafcf0c..c4630ad 100755 --- a/magento-quick-integration-tests/entrypoint.sh +++ b/magento-quick-integration-tests/entrypoint.sh @@ -54,6 +54,9 @@ if [[ ! -z "$INPUT_MAGENTO_PRE_INSTALL_SCRIPT" && -f "${GITHUB_WORKSPACE}/$INPUT . ${GITHUB_WORKSPACE}/$INPUT_MAGENTO_PRE_INSTALL_SCRIPT fi +echo "Ignore known security advisories" +composer config --json audit.ignore '{"PKSA-z3gr-8qht-p93v": "Ignored for CI", "PKSA-rkkf-636k-qjb3": "Ignored for CI", "PKSA-wws7-mr54-jsny": "Ignored for CI"}' + echo "Run installation" COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction --no-progress diff --git a/magento-unit-tests/entrypoint.sh b/magento-unit-tests/entrypoint.sh index a29c7e8..bcc3768 100755 --- a/magento-unit-tests/entrypoint.sh +++ b/magento-unit-tests/entrypoint.sh @@ -50,6 +50,9 @@ fi echo "Allow composer plugins" composer config --no-plugins allow-plugins true +echo "Ignore known security advisories" +composer config --json audit.ignore '{"PKSA-z3gr-8qht-p93v": "Ignored for CI", "PKSA-rkkf-636k-qjb3": "Ignored for CI", "PKSA-wws7-mr54-jsny": "Ignored for CI"}' + echo "Run installation" COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction --no-progress