jellyfin/.github/workflows/codeql-analysis.yml

38 lines
1001 B
YAML
Raw Normal View History

2020-11-21 12:49:52 -05:00
name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '24 2 * * 4'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
2022-11-09 09:28:52 -05:00
- name: Setup .NET
2023-05-25 10:18:46 -04:00
uses: actions/setup-dotnet@aa983c550dfda0d1722b6ac6aed55724ffacc6d3 # v3.1.0
2020-11-21 13:03:09 -05:00
with:
2022-11-09 09:28:52 -05:00
dotnet-version: '7.0.x'
2021-11-08 08:55:16 -05:00
2020-11-21 12:49:52 -05:00
- name: Initialize CodeQL
uses: github/codeql-action/init@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5
2020-11-21 12:49:52 -05:00
with:
languages: ${{ matrix.language }}
2020-11-21 13:21:58 -05:00
queries: +security-extended
2020-11-21 12:49:52 -05:00
- name: Autobuild
uses: github/codeql-action/autobuild@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5
2020-11-21 12:49:52 -05:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5