From 5982d8fdd07a52da0e7f79994f84be18de806fea Mon Sep 17 00:00:00 2001 From: Curtis Wensley Date: Tue, 14 Jan 2025 13:45:23 -0800 Subject: [PATCH] Use setup-dotnet action to install the full dotnet sdk including windows bits. --- .github/workflows/workflow_ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow_ci.yml b/.github/workflows/workflow_ci.yml index eb89c2c6..876dbde1 100644 --- a/.github/workflows/workflow_ci.yml +++ b/.github/workflows/workflow_ci.yml @@ -47,7 +47,7 @@ jobs: build_compute: name: build compute - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: [check_workflow, check_src] if: ${{ needs.check_src.outputs.any_changed == 'true' || needs.check_workflow.outputs.any_changed == 'true' }} steps: @@ -55,6 +55,9 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.0.x' - name: revision id: revision run: |