Skip to content

Commit 16eed1b

Browse files
committed
Use PostgreSQL 18.1 and MySQL 8.0.44 explicitly
1 parent 6ae902c commit 16eed1b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
env:
1717
SYMFONY_REQUIRE: ${{ matrix.symfony }}
1818
SYMFONY_DEPRECATIONS_HELPER: ${{ matrix.symfony-deprecations }}
19-
DB_DSN_MYSQL: mysql://test:test@127.0.0.1/craue_form_flow_tests
20-
DB_DSN_POSTGRESQL: pgsql://test:test@127.0.0.1/craue_form_flow_tests
19+
DB_DSN_MYSQL: mysql://test:test@127.0.0.1/craue_form_flow_tests?serverVersion=8.0.44
20+
DB_DSN_POSTGRESQL: pgsql://test:test@127.0.0.1/craue_form_flow_tests?serverVersion=18.1
2121
DB_DSN_SQLITE: sqlite:///sqlite.db
2222

2323
strategy:
@@ -45,7 +45,7 @@ jobs:
4545

4646
services:
4747
mysql:
48-
image: mysql:${{ (matrix.php == '7.3' && '5.7') || '8.0' }}
48+
image: mysql:8.0.44
4949
env:
5050
MYSQL_USER: test
5151
MYSQL_PASSWORD: test
@@ -60,7 +60,7 @@ jobs:
6060
- 3306:3306
6161

6262
postgres:
63-
image: postgres
63+
image: postgres:18.1
6464
env:
6565
POSTGRES_USER: test
6666
POSTGRES_PASSWORD: test

0 commit comments

Comments
 (0)