diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 65f7a61e2755..d08450f2b3f5 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -77,7 +77,7 @@ jobs: cd tests/e2e/${{ matrix.etest }} go test -v -timeout=45m ./${{ matrix.etest}}_test.go -ci -local - name: On Failure, Launch Debug Session - uses: lhotari/action-upterm@v1 + uses: dereknola/action-upterm@v1.1 if: ${{ failure() }} with: ## If no one connects after 5 minutes, shut down server. diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 94a19cec247f..3f614d24b045 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -92,7 +92,7 @@ jobs: - name: Cleanup VM run: vagrant destroy -f - name: On Failure, launch debug session - uses: lhotari/action-upterm@v1 + uses: dereknola/action-upterm@v1.1 if: ${{ failure() }} with: ## If no one connects after 5 minutes, shut down server. diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 2cde5fc0a9c1..66a8dc1f22d5 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -58,7 +58,7 @@ jobs: mkdir -p $GOCOVERDIR sudo -E env "PATH=$PATH" go test -v -timeout=45m ./tests/integration/${{ matrix.itest }}/... -run Integration - name: On Failure, Launch Debug Session - uses: lhotari/action-upterm@v1 + uses: dereknola/action-upterm@v1.1 if: ${{ failure() }} with: ## If no one connects after 5 minutes, shut down server. diff --git a/.github/workflows/unitcoverage.yaml b/.github/workflows/unitcoverage.yaml index 7f30a6ef57dd..9915b98cb24c 100644 --- a/.github/workflows/unitcoverage.yaml +++ b/.github/workflows/unitcoverage.yaml @@ -43,7 +43,7 @@ jobs: go tool cover -func coverage.out - name: On Failure, Launch Debug Session if: ${{ failure() }} - uses: lhotari/action-upterm@v1 + uses: dereknola/action-upterm@v1.1 with: wait-timeout-minutes: 5 - name: Upload Results To Codecov