From 357798501538e6d2f985c4af355ab8133d0815a9 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 26 Apr 2021 15:18:34 -0700 Subject: [PATCH 1/3] feat: add codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 000000000..98ede856c --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,34 @@ +name: "Code Scanning" + +on: + push: + branches: [main] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + schedule: + # Runs every Monday morning PST + - cron: "17 15 * * 1" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-20.04 + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: javascript + paths-ignore: + - lib/vscode + + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 From e48de92c7f79b83f666c012d99497b3d4cdfcf8f Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 27 Apr 2021 15:22:59 -0700 Subject: [PATCH 2/3] chore: add codeql-action to dependabot config --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8d97f1eea..4ec51d013 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,7 @@ updates: # GitHub always delivers the latest versions for each major # release tag, so handle updates manually - dependency-name: "actions/*" + - dependency-name: "github/codeql-action/*" - package-ecosystem: "npm" directory: "/" From 2bf0907de8f3de3297588ccac0ea93a4427b256e Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 27 Apr 2021 15:34:23 -0700 Subject: [PATCH 3/3] feat: add codeql-config file --- .github/codeql-config.yml | 4 ++++ .github/workflows/codeql-analysis.yml | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .github/codeql-config.yml diff --git a/.github/codeql-config.yml b/.github/codeql-config.yml new file mode 100644 index 000000000..690b8e5a9 --- /dev/null +++ b/.github/codeql-config.yml @@ -0,0 +1,4 @@ +name: "code-server CodeQL config" + +paths-ignore: + - lib/vscode diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 98ede856c..3b41e3d9b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -23,9 +23,8 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: + config-file: ./.github/codeql-config.yml languages: javascript - paths-ignore: - - lib/vscode - name: Autobuild uses: github/codeql-action/autobuild@v1