mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Another try at running govulncheck
This commit is contained in:
parent
4d95af20c2
commit
4ffacbbe80
2 changed files with 17 additions and 3 deletions
14
.github/workflows/codeql-analysis.yml
vendored
14
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -9,9 +9,6 @@ on:
|
|||
schedule:
|
||||
- cron: '0 22 * * 5'
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
||||
jobs:
|
||||
CodeQL-Build:
|
||||
|
||||
|
|
@ -67,3 +64,14 @@ jobs:
|
|||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v3
|
||||
|
||||
- name: Run govulncheck
|
||||
if: matrix.language == 'go'
|
||||
run: python3 .github/workflows/ci.py govulncheck
|
||||
|
||||
- name: Upload govulncheck results
|
||||
if: matrix.language == 'go'
|
||||
uses: github/codeql-action/upload-sarif@v3
|
||||
with:
|
||||
sarif_file: govulncheck.sarif
|
||||
category: govulncheck
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue