From 3b4922f7045d1257b5aaefcd5122ee6e85c4fad2 Mon Sep 17 00:00:00 2001 From: Suyash Patil Date: Fri, 20 Jun 2025 19:42:12 +0530 Subject: [PATCH 1/2] chore: remove eol action --- .github/workflows/eol-outdated-js-scan.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/eol-outdated-js-scan.yml diff --git a/.github/workflows/eol-outdated-js-scan.yml b/.github/workflows/eol-outdated-js-scan.yml deleted file mode 100644 index 3d44205..0000000 --- a/.github/workflows/eol-outdated-js-scan.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: End of Life and Outdated JS Scan - -on: - pull_request: - branches: [master] - types: [opened, synchronize, reopened, ready_for_review] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - call-eol-scan: - if: ${{ github.event.pull_request.draft == false }} - uses: fylein/workflows/.github/workflows/eol-outdated-js-scan.yml@master - with: - npm-run-cmd: 'npm ci' - secrets: - github-token: ${{ secrets.GITHUB_TOKEN }} - nvd-api-key: ${{ secrets.NVD_API_KEY }} From 206dfe4d9b3e6c7944fbcd8c42e587b0e08fa87e Mon Sep 17 00:00:00 2001 From: Suyash Patil <127177049+suyashpatil78@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:42:22 +0000 Subject: [PATCH 2/2] minor --- .github/workflows/secrets-scan.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/secrets-scan.yml diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml new file mode 100644 index 0000000..5310da2 --- /dev/null +++ b/.github/workflows/secrets-scan.yml @@ -0,0 +1,26 @@ +name: Secrets Scan + +on: + pull_request: + types: [opened, synchronize, reopened] + branches: + - master + push: + branches: + - master + +jobs: + secrets-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: gitleaks/gitleaks-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE_KEY }} + GITLEAKS_NOTIFY_USER_LIST: ${{ vars.GITLEAKS_NOTIFY_USER_LIST }} + GITLEAKS_ENABLE_COMMENTS: 'true' + GITLEAKS_ENABLE_UPLOAD_ARTIFACT: 'false' \ No newline at end of file