diff --git a/.github/workflows/new-release.yml b/.github/workflows/new-release.yml index b291c78e..a0f2121b 100644 --- a/.github/workflows/new-release.yml +++ b/.github/workflows/new-release.yml @@ -44,6 +44,6 @@ jobs: - name: Update VERSION_LATEST_RELEASE to new published version run: cp plugin/VERSION_CURRENT.txt plugin/VERSION_LATEST_RELEASE.txt - name: Update VERSION_LATEST_RELEASE - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Update VERSION_LATEST_RELEASE to ${{ github.event.inputs.new_version }} diff --git a/.github/workflows/perform-release.yaml b/.github/workflows/perform-release.yaml index 0f835880..cbce620b 100644 --- a/.github/workflows/perform-release.yaml +++ b/.github/workflows/perform-release.yaml @@ -31,7 +31,7 @@ jobs: run: printf "${{ github.event.inputs.new_version }}\n" > plugin/VERSION_CURRENT.txt - name: Perform Release Tagging and Push # This will trigger the new release job that will take the tag and push the release to the plugin portal - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Release version ${{ github.event.inputs.new_version }} tagging_message: 'v${{ github.event.inputs.new_version }}'