Skip to content

Commit

Permalink
Change syntax
Browse files Browse the repository at this point in the history
Match the syntax with another repo where the workflow is definitely doing the right thing.
  • Loading branch information
martincostello committed Apr 3, 2024
1 parent 54daca9 commit c327787
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,12 +31,12 @@ 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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9
with:
category: '/language:${{ matrix.language }}'
category: "/language:csharp"

0 comments on commit c327787

Please sign in to comment.