Skip to content

Bump Quartz.Extensions.DependencyInjection from 3.10.0 to 3.11.0 in /src #7873

Bump Quartz.Extensions.DependencyInjection from 3.10.0 to 3.11.0 in /src

Bump Quartz.Extensions.DependencyInjection from 3.10.0 to 3.11.0 in /src #7873

Workflow file for this run

name: "Code Scanning"
on:
pull_request:
branches: [ main, main-vnext ]
push:
branches: [ main, main-vnext ]
schedule:
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '30 1 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
analyze_csharp:
name: Analyze Csharp
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
queries: +security-and-quality,security-extended
- name: Build
run: dotnet build IoTHub.Portal.sln --configuration Release
working-directory: src/
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3