Skip to content

Remove redundant CodeQL workflow to resolve default-setup conflict #1

Remove redundant CodeQL workflow to resolve default-setup conflict

Remove redundant CodeQL workflow to resolve default-setup conflict #1

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
- 'release-*'
pull_request:
branches:
- main
- 'release-*'
types:
- opened
- reopened
- synchronize
- ready_for_review
schedule:
- cron: '0 4 * * 1'
permissions:
actions: read
contents: read
security-events: write
concurrency:
group: codeql-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
analyze:
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }}
name: Analyze (actions)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- actions
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0
- name: Initialize CodeQL
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
category: /language:${{ matrix.language }}