From a109d84a96e2d6253edfef117df190fa440d8b97 Mon Sep 17 00:00:00 2001 From: Anand Chowdhary Date: Mon, 26 Aug 2024 11:20:46 +0200 Subject: [PATCH] :fire: Remove legacy CodeQL workflow --- .github/workflows/codeql.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 443c9bf..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: CodeQL CI -on: - schedule: - - cron: '0 0 * * 1' -jobs: - release: - name: Build and analyze - runs-on: ubuntu-18.04 - if: "!contains(github.event.head_commit.message, '[skip ci]')" - steps: - - name: Checkout - uses: actions/checkout@v3.1.0 - - name: Setup Node.js - uses: actions/setup-node@v3.5.1 - with: - node-version: 16 - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: javascript - - name: Cache node modules - uses: actions/cache@v3.0.11 - env: - cache-name: cache-node-modules - with: - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- - - name: Install dependencies - run: npm ci - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1