From 53434c29d1cd6be173f28e679596d9841034af22 Mon Sep 17 00:00:00 2001 From: Aaron Date: Mon, 16 Mar 2020 11:30:38 -0700 Subject: [PATCH] Update dotnet version in Actions. --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 179ec48..409c159 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET Environment. uses: actions/setup-dotnet@v1 with: - dotnet-version: '3.1.100' + dotnet-version: '3.1.101' - name: Build and run tests. run: dotnet test --collect:"XPlat Code Coverage" - name: Make artifacts directory. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a131e0..587318d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET Environment. uses: actions/setup-dotnet@v1 with: - dotnet-version: '3.1.100' + dotnet-version: '3.1.101' - name: Build package for Release. run: dotnet pack -c Release if: github.event.action == 'published'