From 37ae68de97fdc44e7e2bce7fa62063f4c2dce3b1 Mon Sep 17 00:00:00 2001 From: Marcin Bruzda <94437843+mbruzda-splunk@users.noreply.github.com> Date: Mon, 27 May 2024 13:13:17 +0200 Subject: [PATCH] ci: use internal update-semver action --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37f6fd1..00c0c29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -96,10 +96,16 @@ jobs: passphrase: ${{ secrets.SA_GPG_PASSPHRASE }} update-semver: - name: Move Respository semver tags if: startsWith(github.ref, 'refs/tags/v') needs: build_action runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: haya14busa/action-update-semver@v1 + - uses: splunk/addonfactory-update-semver@v1 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN_ADMIN }} + with: + git_committer_name: ${{ secrets.SA_GH_USER_NAME }} + git_committer_email: ${{ secrets.SA_GH_USER_EMAIL }} + gpg_private_key: ${{ secrets.SA_GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.SA_GPG_PASSPHRASE }} \ No newline at end of file