aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-11-22 17:14:58 +0100
committerGitHub <noreply@github.com>2025-11-22 17:14:58 +0100
commit738cd874fa68cde13dbe6c3f12738abec8e3a8d2 (patch)
treeccab04c69066083d2de0d84a0f2e7f6a915c4541 /.github/workflows
parent6456a3f0323439e38db5e8407319d56acc17fc2d (diff)
Delete .github/workflows/codeql.yml [no ci]
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codeql.yml39
1 files changed, 0 insertions, 39 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
deleted file mode 100644
index 3639c37..0000000
--- a/.github/workflows/codeql.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-name: "CodeQL"
-
-on:
- schedule:
- - cron: '18 6 * * 3'
-
-jobs:
- analyze:
- name: Analyze (${{ matrix.language }})
- runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
- permissions:
- security-events: write
- packages: read
- actions: read
- contents: read
-
- strategy:
- fail-fast: false
- matrix:
- include:
- - language: csharp
- build-mode: none
- - language: javascript-typescript
- build-mode: none
- steps:
- - name: Checkout repository
- uses: actions/checkout@v5
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v4
- with:
- languages: ${{ matrix.language }}
- build-mode: ${{ matrix.build-mode }}
- queries: security-extended
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v4
- with:
- category: "/language:${{matrix.language}}"