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

38 lines
1,001 B
YAML
Raw Normal View History

2020-11-21 18:49:52 +01: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 15:28:52 +01:00
- name: Setup .NET
2023-05-25 16:18:46 +02:00
uses: actions/setup-dotnet@aa983c550dfda0d1722b6ac6aed55724ffacc6d3 # v3.1.0
2020-11-21 19:03:09 +01:00
with:
2022-11-09 15:28:52 +01:00
dotnet-version: '7.0.x'
2021-11-08 14:55:16 +01:00
2020-11-21 18:49:52 +01:00
- name: Initialize CodeQL
uses: github/codeql-action/init@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5
2020-11-21 18:49:52 +01:00
with:
languages: ${{ matrix.language }}
2020-11-21 19:21:58 +01:00
queries: +security-extended
2020-11-21 18:49:52 +01:00
- name: Autobuild
uses: github/codeql-action/autobuild@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5
2020-11-21 18:49:52 +01:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0225834cc549ee0ca93cb085b92954821a145866 # v2.3.5