Skip to content

feat: Update codeql-dynamic docs and on events #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/codeql-dynamic.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: "CodeQL Analysis"

on:
# Makes the workflow reusable / callable from other workflows
workflow_call:
workflow_dispatch:

jobs:
create-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.languages }}
steps:
# This step gets the languages for the repository and creates a supported
# CodeQL language list that gets passed into the analyze step
- name: Get languages from repo
id: set-matrix
uses: advanced-security/set-codeql-language-matrix@v1
Expand All @@ -18,6 +22,7 @@ jobs:

analyze:
needs: create-matrix
# Check if there are no CodeQL supported languages
if: ${{ needs.create-matrix.outputs.matrix != '[]' }}
name: Analyze
runs-on: ubuntu-latest
Expand All @@ -28,7 +33,8 @@ jobs:

strategy:
fail-fast: false
matrix:
matrix:
# Create a matrix build for all supported languages
language: ${{ fromJSON(needs.create-matrix.outputs.matrix) }}

steps:
Expand Down
Loading