From 3e9940f0caa9e1ca61291dbf83733400cd81ee00 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Tue, 30 May 2023 18:39:42 +0500 Subject: [PATCH] Delete CodeQL workflow Signed-off-by: Octol1ttle --- .github/workflows/codeql.yml | 44 ------------------------------------ 1 file changed, 44 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 36ae7a7..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: "CodeQL" -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - schedule: - - cron: '45 7 * * 2' - -jobs: - analyze: - name: Analyze code - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'csharp' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - queries: +security-extended,security-and-quality - - - name: Build solution - uses: github/codeql-action/autobuild@v2 - - - name: Perform CodeQL analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}"