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

38 lines
1001 B
YAML
Raw Normal View History

2020-11-21 17:49:52 +00: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
2023-03-16 04:57:01 +00:00
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
2022-11-09 14:28:52 +00:00
- name: Setup .NET
2023-03-16 04:57:01 +00:00
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
2020-11-21 18:03:09 +00:00
with:
2022-11-09 14:28:52 +00:00
dotnet-version: '7.0.x'
2021-11-08 13:55:16 +00:00
2020-11-21 17:49:52 +00:00
- name: Initialize CodeQL
uses: github/codeql-action/init@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
2020-11-21 17:49:52 +00:00
with:
languages: ${{ matrix.language }}
2020-11-21 18:21:58 +00:00
queries: +security-extended
2020-11-21 17:49:52 +00:00
- name: Autobuild
uses: github/codeql-action/autobuild@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
2020-11-21 17:49:52 +00:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8