From a7fe89aa82ec0ef8c6001bcf4a04b0745d34741e Mon Sep 17 00:00:00 2001
From: Danny McCormick <damccorm@microsoft.com>
Date: Tue, 23 Jul 2019 15:46:37 -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 0d7e859..131922d 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-go@latest
+- uses: actions/checkout@master
+- uses: actions/setup-go@master
   with:
     version: 1.9.3 // The Go version to download (if necessary) and use.
 - run: go run hello.go
@@ -28,9 +28,9 @@ jobs:
         go: [ 1.8, 1.9.3, 1.10 ]
     name: Go ${{ matrix.go }} sample
     actions:
-      - uses: actions/checkout@latest
+      - uses: actions/checkout@master
       - name: Setup go
-        uses: actions/setup-go@latest
+        uses: actions/setup-go@master
         with:
           version: ${{ matrix.go }}
       - run: go run hello.go