Skip to content

Commit 32829a3

Browse files
committed
fix: use Php 8.4 in phpunit actions
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 20e9fcd commit 32829a3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/phpunit-mariadb.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ jobs:
6868

6969
strategy:
7070
matrix:
71-
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
71+
# Php 8.5 (supported by server's master) is not supported by Psalm 6.12.1
72+
#php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
73+
php-versions: ['8.4']
7274
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
7375
mariadb-versions: ['10.6', '11.4']
7476

.github/workflows/phpunit-pgsql.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ jobs:
6868

6969
strategy:
7070
matrix:
71-
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
71+
# Php 8.5 (supported by server's master) is not supported by Psalm 6.12.1
72+
#php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
73+
php-versions: ['8.4']
7274
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
7375

7476
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}

0 commit comments

Comments
 (0)