From 994594ac93bf16e44b487600ea51a45acd3469fd Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Mon, 20 Jan 2025 15:57:11 -0500 Subject: [PATCH] use github-token when pushing changes --- .github/workflows/bump-version.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 02d74817..08d1d854 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -65,8 +65,8 @@ jobs: - name: Checkout Repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - persist-credentials: false token: ${{ steps.token_generator.outputs.token }} + persist-credentials: false - name: Set up Python3 uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: @@ -96,5 +96,6 @@ jobs: - name: Push Changes uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df # v0.8.0 with: - force: false branch: ${{ github.ref }} + force: false + github_token: ${{ steps.token_generator.outputs.token }}