From df3d9aeba0e90e143114dd8eb388902ee7f8fb7b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:34:50 +0000 Subject: [PATCH] chore(deps): update mathieudutour/github-tag-action action to v6.2 --- .github/workflows/bump-version.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index f4e4a60..5fc8956 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -41,7 +41,7 @@ jobs: - if: ${{ inputs.is-library == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }} name: Bump version and push tag (service) id: tag_version - uses: mathieudutour/github-tag-action@v6.0 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} custom_tag: oneclick-${{ env.BUILD_NUMBER }} @@ -49,7 +49,7 @@ jobs: - if: ${{ inputs.is-library == true && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }} name: Bump version and push tag (library) id: tag_version_lib - uses: mathieudutour/github-tag-action@v5.6 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} - if: ${{ inputs.create-release == true && inputs.is-library == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }} @@ -79,7 +79,7 @@ jobs: - name: Bump version and push tag PR (service) if: ${{ inputs.is-library == false && (github.ref != 'refs/heads/master' || github.ref != 'refs/heads/main') && steps.findPr.outputs.number > 0 }} id: tag_version_pr - uses: mathieudutour/github-tag-action@v6.0 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} custom_tag: oneclickpr-${{ env.BUILD_NUMBER }} @@ -87,7 +87,7 @@ jobs: - name: Bump version and push tag PR (library) if: ${{ inputs.is-library == true && (github.ref != 'refs/heads/master' || github.ref != 'refs/heads/main') && steps.findPr.outputs.number > 0 }} id: tag_version_pr_lib - uses: mathieudutour/github-tag-action@v6.0 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} custom_tag: pr-${{ env.BUILD_NUMBER }} @@ -111,7 +111,7 @@ jobs: - name: Bump version and push tag Release Branch (service) if: ${{ inputs.is-library == false && contains(github.ref, 'release') }} id: tag_version_release - uses: mathieudutour/github-tag-action@v6.0 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} custom_tag: oneclickrelease-${{ env.BUILD_NUMBER }} @@ -119,7 +119,7 @@ jobs: - name: Bump version and push tag Release Branch (library) if: ${{ inputs.is-library == true && contains(github.ref, 'release') }} id: tag_version_release_lib - uses: mathieudutour/github-tag-action@v6.0 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.token }} - name: Create a GitHub release branch