Remove unneccessary access token from update workflow

It is not necessary to use a PAT to check out a public repository. Because it is defined, the PAT eventually will expire and the action will stop working. By leaving it at default, the workflow generates a new Github token every time it runs which is enough to check out the repo.
This commit is contained in:
Chris Putnam
2025-11-14 01:29:13 -06:00
committed by GitHub
parent 3221b1db5b
commit 2101107c09

View File

@@ -13,8 +13,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
with:
token: ${{ secrets.REPO_TOKEN }}
- name: Run update script
run: ./update.sh