From b8a7c2047483c95f9a043d28f235dcfb278e73bf Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Tue, 4 Mar 2025 15:09:07 -0500 Subject: [PATCH] Update minimum version of mssql tested --- .github/workflows/pull-db-tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index 0b23de0a66..255552e3aa 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -202,12 +202,11 @@ jobs: test-mssql: if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.actions == 'true' needs: files-changed - # specifying the version of ubuntu in use as mssql fails on newer kernels - # pending resolution from vendor - 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 services: mssql: - image: mcr.microsoft.com/mssql/server:2017-latest + image: mcr.microsoft.com/mssql/server:2019-latest env: ACCEPT_EULA: Y MSSQL_PID: Standard