Skip to content

Commit

Permalink
Remove mysql 5.7 from unit tests
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
stephanme committed Oct 11, 2024
1 parent 475ed48 commit 6fe9b9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: ["mysql:5.7", "mysql:8.0", "mysql:8.2"]
image: ["mysql:8.0", "mysql:8.2"]
services:
mysql:
image: ${{ matrix.image }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests_backwards_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
image: ["mysql:5.7", "mysql:8.0", "mysql:8.2"]
image: ["mysql:8.0", "mysql:8.2"]
services:
mysql:
image: ${{ matrix.image }}
Expand Down

0 comments on commit 6fe9b9e

Please sign in to comment.