Bump Microsoft.Web.WebView2 from 1.0.1823.32 to 1.0.2045.28 in /src/XmlNotepad #485
Workflow file for this run
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: "CodeQL" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '40 14 * * 6' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'csharp' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup NuGet.exe | |
uses: NuGet/setup-nuget@v1 | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Restore the application | |
run: nuget restore ./src/XmlNotepad.sln | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
queries: security-and-quality | |
languages: csharp | |
# Restore the application again to avoid codeql messing things up | |
- name: Restore the application | |
run: nuget restore ./src/XmlNotepad.sln | |
- name: Build the application | |
run: msbuild ./src/XmlNotepad.sln /p:Configuration=Release /verbosity:minimal /p:UseSharedCompilation=False | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |