We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc7600 commit b8a7c20Copy full SHA for b8a7c20
.github/workflows/pull-db-tests.yml
@@ -202,12 +202,11 @@ jobs:
202
test-mssql:
203
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.actions == 'true'
204
needs: files-changed
205
- # specifying the version of ubuntu in use as mssql fails on newer kernels
206
- # pending resolution from vendor
207
- runs-on: ubuntu-20.04
+ # NOTE: mssql-2017 docker image will panic when run on hosts that have Ubuntu newer than 20.04
+ runs-on: ubuntu-latest
208
services:
209
mssql:
210
- image: mcr.microsoft.com/mssql/server:2017-latest
+ image: mcr.microsoft.com/mssql/server:2019-latest
211
env:
212
ACCEPT_EULA: Y
213
MSSQL_PID: Standard
0 commit comments