Update token for GitHub actions in workflow

This commit is contained in:
Jacob Marks 2026-05-12 14:01:49 -04:00 committed by GitHub
parent 4c6054a16e
commit 9a40d196b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.PAT_TOKEN }}
fetch-depth: 0 fetch-depth: 0
- name: Sync upstream - name: Sync upstream
@ -20,5 +20,6 @@ jobs:
git remote add upstream https://github.com/gchq/CyberChef.git git remote add upstream https://github.com/gchq/CyberChef.git
git fetch upstream git fetch upstream
git merge upstream/master git merge upstream/master
git checkout HEAD -- .github/workflows/
git commit --amend --no-edit
git push origin master git push origin master