From e599f8d53ac5979c36219627814cda7595a1af4b Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 20 Feb 2026 18:48:13 -0500 Subject: [PATCH] fix: remove persist-credentials: false so version-bump push succeeds The git push in the Bump version step was failing because persist-credentials: false strips the GITHUB_TOKEN from the git config. The existing permissions: contents: write grant is sufficient; restoring the default (persist-credentials: true) lets the push authenticate. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/version-bump.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index d26fbc2..b2fd0b3 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -16,7 +16,6 @@ jobs: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: fetch-depth: 0 - persist-credentials: false - name: Determine version bump type id: bump-type