From 7345e7c76adccc3d153522f233d0aa0b463a6cb0 Mon Sep 17 00:00:00 2001 From: "C. Augusto Proiete" Date: Sat, 21 Aug 2021 11:37:56 -0300 Subject: [PATCH] Update CI SDKs --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd27303..209e6f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,13 +37,13 @@ jobs: runs-on: ${{ matrix.job.os }} steps: - name: Setup netcoreapp3.1 - uses: actions/setup-dotnet@v1.7.2 + uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: "3.1.407" + dotnet-version: "3.1.412" - name: Setup net5.0 - uses: actions/setup-dotnet@v1.7.2 + uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: "5.0.201" + dotnet-version: "5.0.400" - name: Run dotnet --info run: dotnet --info - uses: actions/checkout@v2.3.4