From 3ed2ff7a870de32f872fb2e77c4684116907e508 Mon Sep 17 00:00:00 2001 From: Will Pearson Date: Mon, 6 Jan 2025 09:53:14 -0800 Subject: [PATCH] Pin ubuntu to 22.04 Something changed with the distribution of the Microsoft.NET.Sdk.WindowsDesktop SDK between 22.04 and 24.04. See https://stackoverflow.com/a/78737980 --- .github/workflows/workflow_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow_ci.yml b/.github/workflows/workflow_ci.yml index 6a3b014f..eb89c2c6 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-latest + runs-on: ubuntu-22.04 needs: [check_workflow, check_src] if: ${{ needs.check_src.outputs.any_changed == 'true' || needs.check_workflow.outputs.any_changed == 'true' }} steps: @@ -71,4 +71,4 @@ jobs: uses: actions/upload-artifact@v4 with: path: src/dist - name: rhino.compute \ No newline at end of file + name: rhino.compute