From 937d7fea656d19d1ac13c715001b1218e2f24021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dragan=20Miljkovi=C4=87?= Date: Wed, 5 Feb 2025 09:24:39 +0100 Subject: [PATCH 1/2] Build process to use .NET 8 --- .github/workflows/dotnet-core.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 508324f..7c6f230 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -1,4 +1,4 @@ -name: .NET 6 & 7 +name: .NET 8 on: push: @@ -11,9 +11,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore - name: Build From e0bf62d2ff505e876d02b7c5e433e9a573f1c140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dragan=20Miljkovi=C4=87?= Date: Wed, 5 Feb 2025 09:25:31 +0100 Subject: [PATCH 2/2] Update dotnet-core-pull-request.yml --- .github/workflows/dotnet-core-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core-pull-request.yml b/.github/workflows/dotnet-core-pull-request.yml index de3b9c7..6b798d8 100644 --- a/.github/workflows/dotnet-core-pull-request.yml +++ b/.github/workflows/dotnet-core-pull-request.yml @@ -11,9 +11,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Install dependencies run: dotnet restore - name: Build