From 44d9f9a2ee40f1231dc900d04c6f9edc8927b6ba Mon Sep 17 00:00:00 2001 From: Brett Earley Date: Tue, 5 Dec 2023 21:25:50 -0500 Subject: [PATCH] Updating security workflows. --- .github/codeql/codeql-config.yml | 13 ++++++ .github/workflows/codeql.yml | 68 ++++++++++++++++++++++++++++++++ .github/workflows/eslint.yml | 18 +++++++++ 3 files changed, 99 insertions(+) create mode 100644 .github/codeql/codeql-config.yml create mode 100644 .github/workflows/codeql.yml create mode 100644 .github/workflows/eslint.yml diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 0000000..49a676f --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,13 @@ +# Recurly Security and Quality checks +# +# Customize this file for your project. +# Contact the application security team in slack/security channel for assistance. +# https://coda.io/d/Information-Security_dDTWpZde3Uu/GitHub-Advanced-Security_suXj4#_lu8Xf +# https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#specifying-directories-to-scan +name: "Recurly Security Tests" +query-filters: +# - exclude: +# id: js/redundant-query +paths-ignore: + - '**/node_modules' + - '**/*test*' \ No newline at end of file diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..8892035 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,68 @@ +# Managed by Security +# Documentation: https://coda.io/d/Information-Security_dDTWpZde3Uu/GitHub-Advanced-Security_suXj4#_lu8Xf +# Contact us in the security slack channel for concerns +name: "Security check - CodeQL" + +on: + pull_request: + workflow_dispatch: + push: + branches: + - staging + - main + - master + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + config-file: ./.github/codeql/codeql-config.yml + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + queries: + security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + continue-on-error: true + with: + category: "/language:${{matrix.language}}" \ No newline at end of file diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 0000000..171c0ea --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,18 @@ +name: Security check - ESLint + +on: + pull_request: + workflow_dispatch: + push: + branches: + - staging + - main + - master + +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: stefanoeb/eslint-action@1.0.2 + continue-on-error: true \ No newline at end of file