Bump Ensure.That, Microsoft.Extensions.Logging, Microsoft.Health.Fhir.Liquid.Converter, Microsoft.Rest.ClientRuntime, Polly and System.Drawing.Common #18483
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code Scanning - Action" | |
on: | |
push: | |
branches: main | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.json' | |
- '**/*.http' | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.json' | |
- '**/*.http' | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
CodeQL-Build: | |
permissions: | |
actions: read | |
contents: read | |
pull-requests: write | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['csharp', 'javascript'] | |
# runs-on: [self-hosted, 1ES.Pool=GithubRunPool] | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Fetch all history for all tags and branches | |
run: | | |
git fetch --prune --unshallow | |
- uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: ./global.json | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config: | | |
queries: | |
- uses: security-and-quality | |
query-filters: | |
- exclude: | |
id: | |
- cs/web/missing-function-level-access-control | |
- name: dotnet restore | |
run: dotnet restore | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |