diff --git a/.github/workflows/coding-style.yml b/.github/workflows/coding-style.yml index cc6bc419..1d4bd577 100644 --- a/.github/workflows/coding-style.yml +++ b/.github/workflows/coding-style.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Build the app run: cd back && dotnet build -p:CheckCodingStyle=true -p:TreatWarningsAsErrors=true '-p:SkipTranscoder=true' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 610c9663..762d308f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: tests: name: Back tests runs-on: ubuntu-latest - container: mcr.microsoft.com/dotnet/sdk:6.0 + container: mcr.microsoft.com/dotnet/sdk:7.0 services: postgres: image: postgres @@ -30,7 +30,7 @@ jobs: run: | cd back dotnet build '-p:SkipTranscoder=true' -p:CopyLocalLockFileAssemblies=true - cp ./out/bin/Kyoo.Abstractions/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll ./tests/Kyoo.Tests/bin/Debug/net6.0/ + cp ./out/bin/Kyoo.Abstractions/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll ./tests/Kyoo.Tests/bin/Debug/net7.0/ - name: Test run: |