From d8cff32ae5a509f8bc6acec0e998dda908da7b40 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Wed, 5 May 2021 16:45:32 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18e2c0693..f794be517 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,23 @@ See [action.yml](action.yml) Basic: ```yaml steps: -- uses: actions/checkout@main +- uses: actions/checkout@v2 - 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 ``` +Preview version: +```yml +steps: +- uses: actions@checkout@v2 + with: + dotnet-version: '6.0.x' + include-prerelease: true +- run: dotnet build +``` + Matrix Testing: ```yaml jobs: From b50d70502be6132e84ceee9ea3b9946c2a8283d4 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Wed, 5 May 2021 16:47:58 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f794be517..dd3c49601 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Preview version: ```yml steps: - uses: actions@checkout@v2 +- uses: actions/setup-dotnet@v1 with: dotnet-version: '6.0.x' include-prerelease: true