Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/4.9.x' into tests/vfs-tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
fredden committed Mar 5, 2024
2 parents e97821a + 0a6f7ba commit cf8fe01
Show file tree
Hide file tree
Showing 19 changed files with 273 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phar-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "none"
php-version: "8.2"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down Expand Up @@ -65,5 +65,12 @@ jobs:
if: ${{ matrix.dependencies == 'locked' }}
run: "composer install --no-interaction --no-progress --no-suggest"

- name: "Compile PHAR"
run: |
php -d phar.readonly=0 vendor/bin/phing phar-build
# We re-run 'composer install' here as phing runs 'composer install --no-dev'.
# Using 'install' (not 'update' with flags) here is correct as the previous update re-wrote wrote the lock file.
composer --no-interaction install --no-progress
- name: "Tests"
run: "vendor/bin/phpunit --coverage-clover=clover.xml --coverage-text"
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.29.0"
uses: "shivammathur/setup-php@2.30.0"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
96 changes: 52 additions & 44 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cf8fe01

Please sign in to comment.