From 1819984751111192d4c63ebab53b0bc6385fa397 Mon Sep 17 00:00:00 2001
From: Chris Patterson <chris@pattersonplace.org>
Date: Mon, 22 Jul 2019 10:25:12 -0400
Subject: [PATCH] Update action.yml

---
 action.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/action.yml b/action.yml
index 220b0ed..f0a3d0d 100644
--- a/action.yml
+++ b/action.yml
@@ -5,10 +5,9 @@ inputs:
   repository:
     description: 'Repository name'
   ref:
-    description: 'Ref to checkout (SHA, branch, tag).'
+    description: 'Ref to checkout (SHA, branch, tag)'
   token:
     description: 'Access token for clone repository'
-    default: ${{ github.token }}
   clean:
     description: 'If true, execute `execute git clean -ffdx && git reset --hard HEAD` before fetching'
     default: true
@@ -20,6 +19,5 @@ inputs:
     description: 'The depth of commits to ask Git to fetch; defaults to no limit'  
   path:
     description: 'Optional path to check out source code'  
-    default: 'foo/${{github.ref}}'
 runs:
   plugin: 'checkout'