Skip to content

chore(ci)(deps): bump actions/upload-pages-artifact from 4.0.0 to 5.0… #3

chore(ci)(deps): bump actions/upload-pages-artifact from 4.0.0 to 5.0…

chore(ci)(deps): bump actions/upload-pages-artifact from 4.0.0 to 5.0… #3

Workflow file for this run

name: "CodeQL Advanced"
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
schedule:
# Run at 6:00 AM UTC every Monday
- cron: '0 6 * * 1'
workflow_dispatch:
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
# Required for all workflows
security-events: write
# Required to fetch internal or private CodeQL packs
packages: read
# Only required for workflows in private repositories
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: csharp
build-mode: manual
- language: javascript-typescript
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Initialize CodeQL
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: +security-and-quality
- if: matrix.build-mode == 'manual'
name: Setup .NET
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
with:
dotnet-version: '9.0.x'
- if: matrix.build-mode == 'manual'
name: Build
run: dotnet build Jellyfin.Plugin.JellyfinEnhanced/JellyfinEnhanced.csproj --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13
with:
category: "/language:${{matrix.language}}"