From 0009b47a0e698e1af27fd26161d904c654aa47d1 Mon Sep 17 00:00:00 2001 From: Milap Sheth Date: Tue, 26 Apr 2022 21:04:49 -0400 Subject: [PATCH] fix(gh): fix gh action --- .github/workflows/release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1d81d0b18..06a56adf0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,12 +17,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3.0.1 with: fetch-depth: '0' + submodules: recursive - id: release - uses: anothrNick/github-tag-action@1.26.0 + uses: anothrNick/github-tag-action@1.39.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BUMP: ${{ github.event.inputs.bumpType }} @@ -73,7 +74,7 @@ jobs: fi - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.26.0 + uses: anothrNick/github-tag-action@1.39.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BUMP: ${{ github.event.inputs.bumpType }}