Skip to content
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