Update readme .net 5.0.100 -> 5.0.101

This commit is contained in:
John Wostenberg 2020-12-22 09:16:12 -07:00 committed by GitHub
parent f1b8f76a67
commit cdf9e212e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
dotnet: [ '2.2.103', '3.0', '3.1.x', '5.0.100' ] dotnet: [ '2.2.103', '3.0', '3.1.x', '5.0.101' ]
name: Dotnet ${{ matrix.dotnet }} sample name: Dotnet ${{ matrix.dotnet }} sample
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -63,7 +63,7 @@ jobs:
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: '5.0.100' dotnet-version: '5.0.101'
- run: dotnet build <my project> - run: dotnet build <my project>
- run: dotnet test <my project> - run: dotnet test <my project>
``` ```