Skip to content

Commit

Permalink
delete merge queue from codeql
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Abro <[email protected]>
  • Loading branch information
AustinAbro321 committed Aug 30, 2024
1 parent 56cd519 commit 029a04b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/scan-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,20 @@ on:
- cron: "32 2 * * 5"

jobs:
go-codeql-scan:
codeql-scan:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: ["go"]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand All @@ -38,7 +45,7 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
languages: go
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yaml

- name: Build
Expand All @@ -47,4 +54,4 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
category: "/language:go"
category: "/language:${{matrix.language}}"

0 comments on commit 029a04b

Please sign in to comment.