From afd333405e7da2620adf7ec4aafd14b5fc5b1b79 Mon Sep 17 00:00:00 2001
From: Stephen_Lester <stephenl@burnin-media.com>
Date: Wed, 23 Nov 2022 10:27:07 -0700
Subject: [PATCH] Update Github Token name in readme.md

Updated documentation to show the correct name of the default GITHUB_TOKEN.
https://docs.github.com/en/actions/security-guides/automatic-token-authentication
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index ddfc7ee..37fbb5a 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ When Git 2.18 or higher is not in your PATH, falls back to the REST API to downl
     #
     # [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
     #
-    # Default: ${{ github.token }}
+    # Default: ${{ github.GITHUB_TOKEN }}
     token: ''
 
     # SSH key used to fetch the repository. The SSH key is configured with the local
@@ -185,7 +185,7 @@ When Git 2.18 or higher is not in your PATH, falls back to the REST API to downl
     path: my-tools
 ```
 
-> - `${{ github.token }}` is scoped to the current repository, so if you want to checkout a different repository that is private you will need to provide your own [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).
+> - `${{ github.GITHUB_TOKEN }}` is scoped to the current repository, so if you want to checkout a different repository that is private you will need to provide your own [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).
 
 
 ## Checkout pull request HEAD commit instead of merge commit