From b89fb0f4292f7e1d7466f9579d04b028be4036ee Mon Sep 17 00:00:00 2001 From: reubensamuel <110553227+reubensamuel@users.noreply.github.com> Date: Tue, 24 Jan 2023 13:52:41 +0000 Subject: [PATCH 1/2] GAT-1932: Remove the max_old_space parameter --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18cdcfc3f..c1fc86003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ RUN npm install --production COPY . . EXPOSE 3001 -CMD [ "node","--max-old-space-size=3072", "index.js" ] +CMD [ "node", "index.js" ] From 73d1d6d63e5bf03cec6112a841c7d16b222e4eae Mon Sep 17 00:00:00 2001 From: reubensamuel <110553227+reubensamuel@users.noreply.github.com> Date: Tue, 24 Jan 2023 14:26:17 +0000 Subject: [PATCH 2/2] GAT-1932: Adding Fixes --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1bfaf023d..33eddae9e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,10 +13,10 @@ name: "CodeQL" on: push: - branches: [ "dev", UAT, UATBeta, master, release ] + branches: [ "dev", "UAT", "UATBeta", "master", "release" ] pull_request: # The branches below must be a subset of the branches above - branches: [ "dev" ] + branches: [ "dev", "UAT", "UATBeta", "master", "release" ] schedule: - cron: '26 5 * * 1'