From 38b72185ef87da574f01167660712d49ac918525 Mon Sep 17 00:00:00 2001 From: Ankita Dodamani Date: Wed, 19 Mar 2025 18:33:46 +0530 Subject: [PATCH 1/2] chore: updated node to 18 for deployment --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ac9b0d..476d1d7 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,6 @@ "yargs": "^17.5.1" }, "engines": { - "node": "=16.18.1" + "node": ">=18.0.0" } } From 8a683adf74dbe1753e95d2c00b1ecca5d68858cf Mon Sep 17 00:00:00 2001 From: Ankita Dodamani <115449840+Contentstack-AnkitaD@users.noreply.github.com> Date: Wed, 19 Mar 2025 19:47:33 +0000 Subject: [PATCH 2/2] fix: removed gittyleaks and horusec scan checks --- .github/workflows/sast-scan.yml | 11 ----------- .github/workflows/secrets-scan.yml | 11 ----------- 2 files changed, 22 deletions(-) delete mode 100644 .github/workflows/sast-scan.yml delete mode 100644 .github/workflows/secrets-scan.yml diff --git a/.github/workflows/sast-scan.yml b/.github/workflows/sast-scan.yml deleted file mode 100644 index f931630..0000000 --- a/.github/workflows/sast-scan.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: SAST Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Horusec Scan - run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd) \ No newline at end of file diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml deleted file mode 100644 index 1e8f176..0000000 --- a/.github/workflows/secrets-scan.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Secrets Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Gittyleaks - uses: gupy-io/gittyleaks-action@v0.1 \ No newline at end of file