Skip to content

Commit 87dc55c

Browse files
authored
Remove mysql 5.7 from unit tests (#4018)
- mysql 5.7 is explicitly not supported for [cf-deployment|https://github.com/cloudfoundry/cf-deployment/blob/main/texts/deployment-guide.md#databases] - fixes #3949 and unblocks #3952
1 parent 6d1abbe commit 87dc55c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
fail-fast: false
7979
matrix:
80-
image: ["mysql:5.7", "mysql:8.0", "mysql:8.2"]
80+
image: ["mysql:8.0", "mysql:8.2"]
8181
services:
8282
mysql:
8383
image: ${{ matrix.image }}

.github/workflows/unit_tests_backwards_compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
fail-fast: false
8787
max-parallel: 3
8888
matrix:
89-
image: ["mysql:5.7", "mysql:8.0", "mysql:8.2"]
89+
image: ["mysql:8.0", "mysql:8.2"]
9090
services:
9191
mysql:
9292
image: ${{ matrix.image }}

0 commit comments

Comments
 (0)