chore(deps): update dependency sonaranalyzer.csharp to 10.32.0.713 #5482
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Needed so the reusable workflow can optionally delete the temp per-OS artifacts it creates. | |
| permissions: | |
| contents: read | |
| actions: write | |
| env: | |
| productNamespacePrefix: "ReactiveUI" | |
| jobs: | |
| build: | |
| uses: reactiveui/actions-common/.github/workflows/workflow-common-setup-and-build.yml@main | |
| with: | |
| configuration: Release | |
| productNamespacePrefix: "ReactiveUI" | |
| installWorkloads: true | |
| # ReactiveUI.WinUI.Tests hosts a real WinUI application, which needs the Windows App SDK runtime on the | |
| # agent. That is a machine-level MSIX framework package, not an SDK workload, so installWorkloads does not | |
| # cover it and the tests skip themselves without it. Keep the version in step with the | |
| # Microsoft.WindowsAppSDK package pinned in src/Directory.Packages.props. | |
| installWindowsAppRuntime: true | |
| windowsAppRuntimeVersion: '2.3' | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |