From 2101107c09ff973554d12eaa9d3fdf7add6cd09b Mon Sep 17 00:00:00 2001 From: Chris Putnam Date: Fri, 14 Nov 2025 01:29:13 -0600 Subject: [PATCH] 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. --- .github/workflows/update.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d5b62623..19030bba 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -13,8 +13,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v5 - with: - token: ${{ secrets.REPO_TOKEN }} - name: Run update script run: ./update.sh