From 399570941a45d35e5322cc1d862088dd25167fec Mon Sep 17 00:00:00 2001 From: Alexandre Mutel Date: Sat, 17 Feb 2024 06:47:31 +0100 Subject: [PATCH] Remove net7.0 from CI --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcd9c6a7..557b00ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,17 +15,16 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 - - name: Install .NET 6.0, 7.0, and 8.0 - uses: actions/setup-dotnet@v1 + - name: Install .NET 6.0, and 8.0 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x - 7.0.x 8.0.x - name: Build, Test, Pack, Publish