Skip to content

Commit 2a3e970

Browse files
KentarouTakedailuuu1994
authored andcommitted
[CI] Use MySQL LTS version
Update the MySQL version used in CI from 8.3 to 8.4, the current MySQL LTS release. CI has been using MySQL 8.3 due to a MySQL-side bug that caused test failures (see GH-14112, GH-14113, GH-14120). That issue has now been fixed upstream in MySQL 8.4.8. References: * MySQL 8.4.8 release notes (pluggable authentication fix): https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-8.html#mysqld-8-4-8-pluggable-auth * MySQL bug tracker: https://bugs.mysql.com/bug.php?id=114876#c555902 * Docker image availability: https://hub.docker.com/_/mysql/tags?name=8.4 Closes GH-21154
1 parent 8b47ae8 commit 2a3e970

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
resource_class: arm.medium
66
docker:
77
- image: cimg/base:current-22.04
8-
- image: mysql:8.3
8+
- image: mysql:8.4
99
environment:
1010
MYSQL_ALLOW_EMPTY_PASSWORD: true
1111
MYSQL_ROOT_PASSWORD: ''

.github/workflows/nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
LINUX_X64:
137137
services:
138138
mysql:
139-
image: mysql:8.3
139+
image: mysql:8.4
140140
ports:
141141
- 3306:3306
142142
env:
@@ -278,7 +278,7 @@ jobs:
278278
PDO_FIREBIRD_TEST_DSN: firebird:dbname=firebird:test.fdb
279279
services:
280280
mysql:
281-
image: mysql:8.3
281+
image: mysql:8.4
282282
ports:
283283
- 3306:3306
284284
env:
@@ -413,7 +413,7 @@ jobs:
413413
if: inputs.branch == 'master'
414414
services:
415415
mysql:
416-
image: mysql:8.3
416+
image: mysql:8.4
417417
ports:
418418
- 3306:3306
419419
env:
@@ -661,7 +661,7 @@ jobs:
661661
OPCACHE_VARIATION:
662662
services:
663663
mysql:
664-
image: mysql:8.3
664+
image: mysql:8.4
665665
ports:
666666
- 3306:3306
667667
env:

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
4747
services:
4848
mysql:
49-
image: mysql:8.3
49+
image: mysql:8.4
5050
ports:
5151
- 3306:3306
5252
env:
@@ -124,7 +124,7 @@ jobs:
124124
PDO_MYSQL_TEST_HOST: mysql
125125
services:
126126
mysql:
127-
image: mysql:8.3
127+
image: mysql:8.4
128128
ports:
129129
- 3306:3306
130130
env:

0 commit comments

Comments
 (0)