diff --git a/.github/workflows/flytectl-install.yml b/.github/workflows/flytectl-install.yml index 01864b3ecb..3b9e6476b9 100644 --- a/.github/workflows/flytectl-install.yml +++ b/.github/workflows/flytectl-install.yml @@ -29,11 +29,12 @@ jobs: - " " steps: - uses: actions/checkout@v4 - - run: | - chmod +x ./flytectl/install.sh - ./flytectl/install.sh ${{ matrix.version }} - ./bin/flytectl version - retry: - max-tries: 3 - delay: 5 + - uses: nick-fields/retry@v3 + with: + timeout_seconds: 15 + max_attempts: 3 + command: | + chmod +x ./flytectl/install.sh + ./flytectl/install.sh ${{ matrix.version }} + ./bin/flytectl version