Skip to content

Commit feb1305

Browse files
authored
Merge pull request #21 from cakephp/53-update
Update PHP versions for 5.3
2 parents 0e6c545 + ddd1d7c commit feb1305

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/cs-stan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup PHP
3030
uses: shivammathur/setup-php@v2
3131
with:
32-
php-version: '8.1'
32+
php-version: '8.2'
3333
extensions: mbstring, intl
3434
coverage: none
3535
tools: phive, cs2pr

.github/workflows/testsuite-with-db.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-version: ['8.1']
16+
php-version: ['8.2']
1717
db-type: [mysql, pgsql]
1818
dependencies: [highest]
1919
unstable: [false]
2020
include:
21-
- php-version: '8.1'
21+
- php-version: '8.2'
2222
db-type: sqlite
2323
dependencies: lowest
2424
unstable: false
@@ -78,14 +78,14 @@ jobs:
7878
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then
7979
export DB_URL='postgres://postgres:[email protected]/postgres'
8080
fi
81-
if [[ ${{ matrix.php-version }} == '8.1' && ${{ matrix.db-type }} == 'mysql' ]]; then
81+
if [[ ${{ matrix.php-version }} == '8.2' && ${{ matrix.db-type }} == 'mysql' ]]; then
8282
vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
8383
else
8484
vendor/bin/phpunit --display-warnings --display-deprecations
8585
fi
8686
8787
- name: Code Coverage Report
88-
if: success() && matrix.php-version == '8.1' && matrix.db-type == 'mysql'
88+
if: success() && matrix.php-version == '8.2' && matrix.db-type == 'mysql'
8989
uses: codecov/codecov-action@v5
9090
with:
9191
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/testsuite-without-db.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-version: ['8.1', '8.2', '8.3']
16+
php-version: ['8.2', '8.3', '8.4']
1717
dependencies: [highest]
1818
unstable: [false]
1919
include:
20-
- php-version: '8.1'
20+
- php-version: '8.2'
2121
dependencies: lowest
2222
unstable: false
2323
- php-version: '8.4'
@@ -45,14 +45,14 @@ jobs:
4545

4646
- name: Run PHPUnit
4747
run: |
48-
if [[ ${{ matrix.php-version }} == '8.1' && ${{ matrix.dependencies }} == 'highest' ]]; then
48+
if [[ ${{ matrix.php-version }} == '8.2' && ${{ matrix.dependencies }} == 'highest' ]]; then
4949
export CODECOVERAGE=1 && vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
5050
else
5151
vendor/bin/phpunit --display-warnings --display-deprecations
5252
fi
5353
5454
- name: Code Coverage Report
55-
if: success() && matrix.php-version == '8.1' && matrix.dependencies == 'highest'
55+
if: success() && matrix.php-version == '8.2' && matrix.dependencies == 'highest'
5656
uses: codecov/codecov-action@v5
5757
with:
5858
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)