From 4dfdec215d42801f8adc3b3dd8d07ff118fd765a Mon Sep 17 00:00:00 2001 From: Casper Bollen Date: Mon, 4 Dec 2023 18:22:58 +0100 Subject: [PATCH] chore: updated github workflow to match dotnet 8 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ffa74de..0a9f5f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,15 +11,15 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use .NET Core 6.0 SDK + - name: Use .NET Core 8.0 SDK uses: actions/setup-dotnet@v1 with: - dotnet-version: '6.0.x' - + dotnet-version: '8.0.x' + - name: Build if: runner.os != 'Windows' run: | - chmod +x ./build.sh + chmod +x ./build.sh ./build.sh env: # Work around https://github.com/actions/setup-dotnet/issues/29