From e0592f1388245e49f457580f7189f3cc23e6227e Mon Sep 17 00:00:00 2001 From: Canming Huang Date: Fri, 19 Nov 2021 17:51:24 -0500 Subject: [PATCH] Add dotnet 6 into MacOS action runner. --- .github/workflows/macos.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d0efda10a..60acd3468 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -9,13 +9,16 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-11 # one day time out timeout-minutes: 1440 steps: - uses: actions/checkout@v2 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' - name: Check out submodules run: git submodule update --init --recursive - name: Build Emgu CV native binary