From 4774858d3c014634e950c8d2dc59fddfc9ce59b4 Mon Sep 17 00:00:00 2001 From: Mathew Payne Date: Sat, 31 Jul 2021 13:29:00 +0200 Subject: [PATCH] Introduce the GitHub Advanced Security workflow This can help to find security problems sooner. --- .../workflows/github_advanced_security.yml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/github_advanced_security.yml diff --git a/.github/workflows/github_advanced_security.yml b/.github/workflows/github_advanced_security.yml new file mode 100644 index 000000000..99052c01b --- /dev/null +++ b/.github/workflows/github_advanced_security.yml @@ -0,0 +1,32 @@ +name: GitHub Advanced Security +on: [push, pull_request] +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [javascript] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + queries: security-extended + + - name: Autobuild CodeQL + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL analysis + uses: github/codeql-action/analyze@v1