From 964d6baea159046c68ca91a402f49b7e8aecc554 Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 26 Feb 2026 10:58:42 -0800 Subject: [PATCH 1/2] fix: Add token to checkout step in release workflow Trying GITHUB_TOKEN for this. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fecc7934..2fc69668 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,7 @@ jobs: uses: actions/checkout@v4 with: ref: main + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 - name: Set Git Identity From ca04a170396fb397180a66eae3527acfd6e0cf7f Mon Sep 17 00:00:00 2001 From: William French Date: Thu, 26 Feb 2026 10:59:45 -0800 Subject: [PATCH 2/2] Update GitHub Actions token to use GITHUB_TOKEN Replace in dist-pr too --- .github/workflows/dist-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dist-pr.yml b/.github/workflows/dist-pr.yml index 225f95af..7c9727a4 100644 --- a/.github/workflows/dist-pr.yml +++ b/.github/workflows/dist-pr.yml @@ -32,7 +32,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 with: - token: ${{ secrets.GH_MERGE_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # Fetch all history - name: Set Git Identity