Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(client/e2e): use mysql:lts image #24260

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,6 @@
"matchFileNames": ["packages/client/tests/e2e/ts-version/**"],
"schedule": ["before 7am on Wednesday"]
},
{
"groupName": "Weekly vitess docker image version update",
"matchPackageNames": ["vitess/vttestserver"],
"schedule": ["before 7am on Wednesday"]
},
{
"groupName": "Extension: Accelerate",
"automerge": true,
Expand Down Expand Up @@ -260,6 +255,17 @@
"@types/pg"
],
"schedule": ["before 7am on Wednesday"]
},
{
"groupName": "Vitess Docker image",
"matchDatasources": ["docker"],
"matchPackageNames": ["vitess/vttestserver"],
"schedule": ["before 7am on Wednesday"]
},
{
"groupName": "MySQL Docker image",
"matchDatasources": ["docker"],
"matchPackageNames": ["mysql"]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
condition: service_healthy

mysql:
image: mysql:8.3
image: mysql:lts
command: --lower_case_table_names=1 --max_connections=2
environment:
- MYSQL_ROOT_PASSWORD=root
Expand Down
Loading