Skip to content

Commit

Permalink
Use same versions of DB in local and in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicPoullain committed Mar 22, 2022
1 parent b5a37a9 commit ece2bf0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

services:
mysql:
image: mysql:5.7.10
image: mysql:5.7.30
ports:
# Another version of MySQL is installed on the vm and already uses the port 3306.
- 3308:3306
Expand All @@ -34,7 +34,7 @@ jobs:
MYSQL_DATABASE: test

mariadb:
image: mariadb:10.3.22
image: mariadb:10.3.32
ports:
- 3307:3306
env:
Expand All @@ -44,7 +44,7 @@ jobs:
MYSQL_DATABASE: test

postgres:
image: postgres:9.6.1
image: postgres:9.6.18
ports:
- 5432:5432
env:
Expand All @@ -53,7 +53,7 @@ jobs:
POSTGRES_DB: test

mongodb:
image: mongo:3.4.1
image: mongo:4.0.18
ports:
- 27017:27017

Expand Down

0 comments on commit ece2bf0

Please sign in to comment.