diff options
author | Vitaly Takmazov | 2024-07-24 22:00:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-07-24 22:00:22 +0300 |
commit | 4fc0b2baec174e8ccb98f88a16d012668845e49e (patch) | |
tree | 38c68d53e9a746f52931412594572fcce97328c6 | |
parent | ab940d1b6024485a045c1cf7e540636fad1fce07 (diff) |
CI: pin mssql/server version
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d06bd63..be847ff9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: MARIADB_ROOT_PASSWORD: secret options: --health-cmd="mysqladmin ping" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s sqlserver: - image: mcr.microsoft.com/mssql/server:2022-latest + image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04 ports: - 1433:1433 options: --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P \"$MSSQL_SA_PASSWORD\" -Q \"SELECT 1\"" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s |