diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index d63596f08f..1bc1915a71 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -164,7 +164,7 @@ jobs: - name: Pull testcontainers images run: | - docker pull mcr.microsoft.com/mssql/server:2022-latest & + docker pull mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04 & docker pull mysql:8.3 & docker pull postgres:16.1-bullseye & docker pull mongo:7.0-jammy & diff --git a/nx.json b/nx.json index 54db3a24a3..fb05ea94d0 100644 --- a/nx.json +++ b/nx.json @@ -10,7 +10,18 @@ }, "targetDefaults": { "build": { - "inputs": ["{workspaceRoot}/scripts/*", "{workspaceRoot}/lerna.json"] + "inputs": [ + "{workspaceRoot}/scripts/*", + "{workspaceRoot}/lerna.json", + "{workspaceRoot}/.github/workflows/*" + ] + }, + "test": { + "inputs": [ + "{workspaceRoot}/scripts/*", + "{workspaceRoot}/lerna.json", + "{workspaceRoot}/.github/workflows/*" + ] } }, "namedInputs": { diff --git a/packages/server/src/integrations/tests/utils/mssql.ts b/packages/server/src/integrations/tests/utils/mssql.ts index a4bd5448f4..ed94477814 100644 --- a/packages/server/src/integrations/tests/utils/mssql.ts +++ b/packages/server/src/integrations/tests/utils/mssql.ts @@ -9,7 +9,9 @@ let ports: Promise export async function getDatasource(): Promise { if (!ports) { ports = startContainer( - new GenericContainer("mcr.microsoft.com/mssql/server:2022-latest") + new GenericContainer( + "mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04" + ) .withExposedPorts(1433) .withEnvironment({ ACCEPT_EULA: "Y",