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

38 lines
985 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@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
2022-11-09 15:28:52 +01:00
- name: Setup .NET
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # tag=v3
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@16964e90ba004cdf0cd845b866b5df21038b7723 # v2
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@16964e90ba004cdf0cd845b866b5df21038b7723 # v2
2020-11-21 18:49:52 +01:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@16964e90ba004cdf0cd845b866b5df21038b7723 # v2