From 9bdaa47c8099f27fc1e97b1d9e43199a85ad3065 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Mon, 3 Aug 2020 16:19:34 -0700 Subject: [PATCH] Update README.md Matching readme to latest release version and fixing checkout action (best practice not to use `@main` versioning) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 635cb91..33a64b0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Basic: ```yaml steps: - uses: actions/checkout@main -- uses: actions/setup-dotnet@v1 +- uses: actions/setup-dotnet@v1.5.0 with: dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel - run: dotnet build @@ -34,7 +34,7 @@ jobs: dotnet: [ '2.2.103', '3.0', '3.1.x' ] name: Dotnet ${{ matrix.dotnet }} sample steps: - - uses: actions/checkout@main + - uses: actions/checkout@v2 - name: Setup dotnet uses: actions/setup-dotnet@v1 with: @@ -45,9 +45,9 @@ jobs: Authentication for nuget feeds: ```yaml steps: -- uses: actions/checkout@main +- uses: actions/checkout@v2 # Authenticates packages to push to GPR -- uses: actions/setup-dotnet@v1 +- uses: actions/setup-dotnet@v1.5.0 with: dotnet-version: '3.1.x' # SDK Version to use. source-url: https://nuget.pkg.github.com//index.json