diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bae7306f..cf427fb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: SEQUEL_FROM_MAIN: "${{matrix.sequel_from_main}}" services: mysql: - image: mysql:5.7 + image: mysql:8.4 ports: - 3306:3306 env: @@ -53,7 +53,7 @@ jobs: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: rom-sql postgres: - image: postgres:14 + image: postgres:16 ports: - 5432:5432 env: diff --git a/docker-compose.yml b/docker-compose.yml index 4244e258..89e646fc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,13 +13,13 @@ services: links: [mysql, postgres] mysql: - image: mysql:5.7 + image: mysql:8.4 ports: - "3307:3306" env_file: .env postgres: - image: postgres:14 + image: postgres:16 ports: - "5433:5432" env_file: .env