From 1566687aab0174315f0dca088335d70ef969c4a8 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Tue, 23 Jul 2019 15:45:43 -0400 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a03a602..ab24e85 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ See [action.yml](action.yml) Basic: ```yaml actions: -- uses: actions/checkout@latest -- uses: actions/setup-dotnet@latest +- uses: actions/checkout@master +- uses: actions/setup-dotnet@master with: version: 2.2.103 // Version to use. - run: dotnet build @@ -28,9 +28,9 @@ jobs: dotnet: [ 2.2.103, 3.5.2, 4.5.1 ] name: Dotnet ${{ matrix.dotnet }} sample actions: - - uses: actions/checkout@latest + - uses: actions/checkout@master - name: Setup dotnet - uses: actions/setup-dotnet@latest + uses: actions/setup-dotnet@master with: version: ${{ matrix.dotnet }} - run: dotnet build