diff options
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 4 | ||||
| -rw-r--r-- | composer.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index 820a62d63..5e1f7c2d7 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -35,7 +35,7 @@ jobs: php-version: '8.4' coverage: none # PHPUnit is installed to support PHPStan checking tests/ - tools: phpstan/phpstan:2.1.31, phpunit/phpunit:9.5.28 + tools: phpstan/phpstan:2.1.31, phpunit/phpunit:9.6.29 - name: Run PHPStan run: phpstan analyze --no-progress @@ -62,7 +62,7 @@ jobs: with: php-version: ${{ matrix.php }} coverage: none - tools: phpunit/phpunit:9.5.16 + tools: phpunit/phpunit:9.6.29 - name: Run PHPUnit run: phpunit --exclude integration --coverage-filter classes --coverage-filter include diff --git a/composer.json b/composer.json index bf12426b8..d27533a35 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,7 @@ }, "require-dev": { "phpstan/phpstan": "2.1.31", - "phpunit/phpunit": "9.5.28", + "phpunit/phpunit": "9.6.29", "phpunit/php-code-coverage": "^9.2" } } |