From 299935c5f723f19152ebd1ad8bb010bd527ae0e3 Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Sun, 1 Sep 2024 14:13:33 -0500 Subject: [PATCH] Update tests to .NET 8 --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 2 +- tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fb9aba..4af54a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,10 +19,10 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - name: Install .NET 7 SDK + - name: Install .NET SDK uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout Repository diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9f48385..40969e1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v2 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore diff --git a/tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.csproj b/tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.csproj index 3bdec7d..e39f68b 100644 --- a/tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.csproj +++ b/tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 enable enable