From c373d773f59fd8e6da8f62d9e540443cff5a3d6b Mon Sep 17 00:00:00 2001 From: Brett Earley Date: Tue, 5 Dec 2023 16:03:15 -0500 Subject: [PATCH] Updating security workflows. --- .github/codeql/codeql-config.yml | 13 +++++++ .github/workflows/codeql.yml | 61 ++++++++++++++++++++++++++++++++ .github/workflows/gosec.yml | 10 ++++++ .github/workflows/nancy.yml | 20 +++++++++++ 4 files changed, 104 insertions(+) create mode 100644 .github/codeql/codeql-config.yml create mode 100644 .github/workflows/codeql.yml create mode 100644 .github/workflows/gosec.yml create mode 100644 .github/workflows/nancy.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..e8b363f --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,61 @@ +# 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] + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'go' ] + config-file: ./.github/codeql/codeql-config.yml + # 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 }} + # 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/gosec.yml b/.github/workflows/gosec.yml new file mode 100644 index 0000000..ab70636 --- /dev/null +++ b/.github/workflows/gosec.yml @@ -0,0 +1,10 @@ +name: Security check - Go Sec + +on: [pull_request, workflow_dispatch] + +jobs: + golang-security-action: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ynniss/golang-security-action@master \ No newline at end of file diff --git a/.github/workflows/nancy.yml b/.github/workflows/nancy.yml new file mode 100644 index 0000000..66d292e --- /dev/null +++ b/.github/workflows/nancy.yml @@ -0,0 +1,20 @@ +name: Security check - Go Nancy + +on: [pull_request, workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Set up Go 1.x in order to write go.list file + uses: actions/setup-go@v3 + with: + go-version: ^1.13 + - name: WriteGoList + run: go list -json -m all > go.list + + - name: Nancy + uses: sonatype-nexus-community/nancy-github-action@main \ No newline at end of file