From 152188a93f55fe54f0acbc9f92c38b7aa3cb31f2 Mon Sep 17 00:00:00 2001 From: Kevin Bost Date: Sat, 14 Mar 2026 20:30:01 -0700 Subject: [PATCH] Use Service Account PAT for checkout in release workflow The checkout step now uses a Personal Access Token (SA_PAT) to ensure the workflow has the necessary permissions to commit and push changes back to the repository, specifically for updating get_versions.yml. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5002afa7cb..8aa2cc6a30 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -275,6 +275,8 @@ jobs: steps: # Checkout is needed so that we can update the get_versions.yml file - uses: actions/checkout@v6 + with: + token: ${{ secrets.SA_PAT }} - name: Increment Version Numbers run: |