Fix dotnet dependabot update failures #290
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: Pull Request | |
| on: | |
| pull_request: | |
| schedule: | |
| # Runs every night at 2 AM UTC. This is to detect flakey builds | |
| - cron: "0 2 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| # Use the .NET SDK from global.json in the root of the repository. | |
| global-json-file: global.json | |
| - name: Build | |
| run: dotnet cake |