Browse Source

build(mysql): update MySQL version to 8

- Update MySQL image from 5.7 to 8 in GitHub Actions workflow
- Update MySQL image from 5.7 to 8 in Docker Compose file
pull/554/head
徐云金YunjinXu 1 year ago
parent
commit
cf20bbd8e1
  1. 2
      .github/workflows/tests.yml
  2. 2
      helper/compose.store.yml

2
.github/workflows/tests.yml

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
services: services:
mysql: mysql:
image: 'mysql:5.7' image: 'mysql:8'
env: env:
MYSQL_ALLOW_EMPTY_PASSWORD: 1 MYSQL_ALLOW_EMPTY_PASSWORD: 1
volumes: volumes:

2
helper/compose.store.yml

@ -1,7 +1,7 @@
version: '3.3' version: '3.3'
services: services:
mysql: mysql:
image: 'mysql:5.7' image: 'mysql:8'
volumes: volumes:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
environment: environment:

Loading…
Cancel
Save