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'