From 9bdaa47c8099f27fc1e97b1d9e43199a85ad3065 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Mon, 3 Aug 2020 16:19:34 -0700 Subject: [PATCH 1/2] 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 From 221e7bcc3bfe12ef12d3a6122678a3d20d4f5824 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Fri, 28 Aug 2020 11:58:17 -0700 Subject: [PATCH 2/2] Use v1 tag for setup-dotnet --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33a64b0..445b87d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Basic: ```yaml steps: - uses: actions/checkout@main -- uses: actions/setup-dotnet@v1.5.0 +- uses: actions/setup-dotnet@v1 with: dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel - run: dotnet build @@ -47,7 +47,7 @@ Authentication for nuget feeds: steps: - uses: actions/checkout@v2 # Authenticates packages to push to GPR -- uses: actions/setup-dotnet@v1.5.0 +- uses: actions/setup-dotnet@v1 with: dotnet-version: '3.1.x' # SDK Version to use. source-url: https://nuget.pkg.github.com//index.json