From c3277873883831bafcd4fb7333cc220cbc1f2de8 Mon Sep 17 00:00:00 2001 From: martincostello Date: Wed, 3 Apr 2024 16:25:47 +0100 Subject: [PATCH] Change syntax Match the syntax with another repo where the workflow is definitely doing the right thing. --- .github/workflows/codeql-analysis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d698eefad4..2c1e4320b9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,11 +21,6 @@ jobs: permissions: security-events: write - strategy: - fail-fast: false - matrix: - language: [ 'csharp' ] - steps: - name: Checkout repository uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 @@ -36,7 +31,7 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 with: - languages: ${{ matrix.language }} + languages: csharp - name: Autobuild uses: github/codeql-action/autobuild@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 @@ -44,4 +39,4 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 with: - category: '/language:${{ matrix.language }}' + category: "/language:csharp"