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-03-16 05:57:01 +01:00
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
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@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
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@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
2020-11-21 18:49:52 +01:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3