From 13b852df8792a5bcf32e90197f4888c8a7ccc418 Mon Sep 17 00:00:00 2001 From: Thomas Ardal Date: Tue, 28 Dec 2021 13:37:44 +0100 Subject: [PATCH] Moved checkout above setup step to align with the other samples (#256) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e16187..e642186 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ Multiple versions: ```yml steps: -- name: Setup dotnet - uses: actions/checkout@v2 -- uses: actions/setup-dotnet@v1 +- name: Setup dotnet + uses: actions/setup-dotnet@v1 with: dotnet-version: | 3.1.x