From 419ae75c254126fa6ae3e3ef573ce224a919b8fe Mon Sep 17 00:00:00 2001
From: Danny McCormick <damccorm@microsoft.com>
Date: Thu, 1 Aug 2019 11:05:15 -0400
Subject: [PATCH] Quoting

---
 README.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 665a2b0..78fc1d2 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ steps:
 - uses: actions/checkout@master
 - uses: actions/setup-go@v1
   with:
-    version: 1.9.3 // The Go version to download (if necessary) and use.
+    version: '1.9.3' // The Go version to download (if necessary) and use.
 - run: go run hello.go
 ```
 
@@ -23,9 +23,10 @@ Matrix Testing:
 ```yaml
 jobs:
   build:
+    runs-on: ubuntu-16.04
     strategy:
       matrix:
-        go: [ 1.8, 1.9.3, 1.10 ]
+        go: [ '1.8', '1.9.3', '1.10' ]
     name: Go ${{ matrix.go }} sample
     steps:
       - uses: actions/checkout@master