diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 898d71c..04e520b 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -14,17 +14,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - # Use trust-ci fine-grained PAT to checkout and later commit the code - # trust-ci is allowed to bypass the branch protection - token: ${{ secrets.CI_GITHUB_TOKEN }} - name: Calculate version id: tag-version uses: mathieudutour/github-tag-action@v6.1 with: dry_run: true - github_token: ${{ secrets.CI_GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} # Configure Git - name: Git configuration @@ -48,4 +44,4 @@ jobs: uses: mathieudutour/github-tag-action@v6.1 with: custom_tag: ${{ steps.tag-version.outputs.new_version }} - github_token: ${{ secrets.CI_GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }}