5f9a308dca
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.11 to 3.26.13.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](6db8d6351f...f779452ac5
)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
77 lines
2.0 KiB
YAML
77 lines
2.0 KiB
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
paths-ignore:
|
|
- "**/README.md"
|
|
- ".github/ISSUE_TEMPLATE/**"
|
|
- "docs/**"
|
|
- "images/**"
|
|
- "manifest.json"
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
paths-ignore:
|
|
- "**/README.md"
|
|
- ".github/ISSUE_TEMPLATE/**"
|
|
- "docs/**"
|
|
- "images/**"
|
|
- "manifest.json"
|
|
|
|
permissions: write-all
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
|
|
# This job will only run if the repository is public
|
|
if: ${{ github.event.repository.private == false }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: ["csharp"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check for BETA file
|
|
id: check-beta
|
|
run: |
|
|
if [ -f "BETA" ]; then
|
|
echo "IS_BETA=true" >> $GITHUB_ENV
|
|
else
|
|
echo "IS_BETA=false" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
|
|
- name: Restore Beta dependencies
|
|
if: ${{env.IS_BETA == 'true' }}
|
|
run: |
|
|
dotnet nuget add source --username ${{ github.repository_owner }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name jellyfin-pre "https://nuget.pkg.github.com/jellyfin/index.json"
|
|
dotnet tool install --global dotnet-outdated-tool
|
|
dotnet outdated -pre Always -u -inc Jellyfin
|
|
|
|
- name: Restore dependencies
|
|
if: ${{env.IS_BETA == 'false' }}
|
|
run: dotnet restore
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
queries: +security-extended
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
|