diff --git a/.github/jobs/fix_pipelinecomponents_image.sh b/.github/jobs/fix_pipelinecomponents_image.sh index 8723b86f1b..5be5274377 100755 --- a/.github/jobs/fix_pipelinecomponents_image.sh +++ b/.github/jobs/fix_pipelinecomponents_image.sh @@ -16,9 +16,10 @@ mydir=$(pwd) echo "Before /app/composer.json:" cat /app/composer.json sed -i 's/"phpcompatibility\/php-compatibility": "9.3.5"/"phpcompatibility\/php-compatibility": "dev-develop"/g' /app/composer.json -sed -i 's/"squizlabs\/php_codesniffer": "3.13.2"/"squizlabs\/php_codesniffer": "^3.13.3"/g' /app/composer.json +#sed -i 's/"squizlabs\/php_codesniffer": "3.13.2"/"squizlabs\/php_codesniffer": "^4.0.1"/g' /app/composer.json echo "After /app/composer.json:" cat /app/composer.json -cd /app; composer update +# We have 1 tool we need, so we can break whatever we want here. +cd /app; composer -W upgrade cd $mydir