From 54233f0f93af6ef3f6d45d778325309d8d0c3d0c Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 5 Feb 2024 11:30:21 +0800 Subject: [PATCH] CI: move from dotnet7 to dotnet8 --- .github/workflows/CI.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 35e4d51..081ef2f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,8 @@ jobs: name: Build and Run Tests runs-on: ubuntu-22.04 container: - image: "ubuntu:22.04" + # TODO: move to 24.04 as soon as it is published in Apr2024 + image: "ubuntu:23.10" steps: - uses: actions/checkout@v2 - name: Install required dependencies @@ -29,7 +30,7 @@ jobs: # The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot apt install --yes --no-install-recommends ca-certificates - apt install --yes --no-install-recommends dotnet7 + apt install --yes --no-install-recommends dotnet8 - name: Restore nuget dependencies run: dotnet restore