Remove custom CodeQL workflow (#2176)

This commit is contained in:
GCHQ Developer 85297 2026-02-04 15:26:23 +00:00 committed by GitHub
parent de3a5ff634
commit 4e8f0c34f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,40 +0,0 @@
name: "CodeQL Analysis"
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
types: [synchronize, opened, reopened]
schedule:
- cron: "22 17 * * 5"
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@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"