From 8d834ad7df6e48f16cb4d49547c44f6da78419bc Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Thu, 4 Mar 2021 11:54:32 -0800 Subject: [PATCH] Update stefanzweifel/git-auto-commit-action to v4.9.2 (#125) --- .github/workflows/update.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 3d07748..f24e262 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -21,7 +21,7 @@ jobs: - run: npm install - name: store-core-version run: echo CORE_VERSION=`cat package.json | jq -r '.dependencies."@grouparoo/core"'` >> $GITHUB_ENV - - uses: stefanzweifel/git-auto-commit-action@fixes/145 + - uses: stefanzweifel/git-auto-commit-action@4.9.2 with: commit_message: Updating Packages commit_user_name: Grouparoo Bot @@ -29,5 +29,3 @@ jobs: commit_author: Grouparoo Bot branch: ${{ github.head_ref }} tagging_message: v${{ env.CORE_VERSION }} - # - name: git tag # This shouldn't be necessary if the above could push & tag at once - # run: if git rev-parse v${{ env.CORE_VERSION }} >/dev/null 2>&1; then echo 'tag exists'; else git tag v${{ env.CORE_VERSION }} && git push origin --tags; fi