From bd3b307b0b6e2076ad8871122f163490ae449fb3 Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Thu, 19 Oct 2023 16:17:12 +0200 Subject: [PATCH] ci: try a different wait action --- .github/workflows/version_bump.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 924813ef77..4f56f7342d 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -28,13 +28,12 @@ jobs: id: get-sha run: echo "sha=$(git log --grep='chore(release):' -n 1 --pretty=format:"%H")" >> $GITHUB_ENV - name: Wait for release workflow to complete - uses: fountainhead/action-wait-for-check@v1.0.0 - id: wait-for-releasegit + uses: explorium-ai/wait-github-status-action@v1.0.2 with: + name: release token: ${{ secrets.GITHUB_TOKEN }} - ref: ${{ env.sha }} - checkName: release - timeoutSeconds: 3600 # 1 hour + sha: ${{ env.sha }} + - uses: actions-rs/toolchain@v1 with: