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

38 lines
1,004 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2022-11-09 15:28:52 +01:00
- name: Setup .NET
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
2020-11-21 19:03:09 +01:00
with:
2023-11-15 16:16:51 +01:00
dotnet-version: '8.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@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.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@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
2020-11-21 18:49:52 +01:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3