From da0612f5b2bf35409e10a8cf7c13849a10fd4b09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Vannicatte?= <20689156+shortcuts@users.noreply.github.com> Date: Wed, 9 Feb 2022 17:13:44 +0100 Subject: [PATCH] chore: set lower github actions timeout (#127) --- .github/workflows/check.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 48573bdbf5..b0db4f50b6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,6 +14,7 @@ concurrency: jobs: setup: runs-on: ubuntu-20.04 + timeout-minutes: 10 steps: - uses: actions/checkout@v2 with: @@ -43,6 +44,7 @@ jobs: specs: runs-on: ubuntu-20.04 + timeout-minutes: 10 needs: setup if: ${{ always() && needs.setup.outputs.RUN_SPECS == 'true' }} strategy: @@ -65,6 +67,7 @@ jobs: run: yarn build:specs ${{ matrix.client }} client_javascript: + timeout-minutes: 10 runs-on: ubuntu-20.04 needs: - setup @@ -102,6 +105,7 @@ jobs: client_java: runs-on: ubuntu-20.04 + timeout-minutes: 10 needs: - setup - specs @@ -139,6 +143,7 @@ jobs: client_php: runs-on: ubuntu-20.04 + timeout-minutes: 10 needs: - setup - specs @@ -169,6 +174,7 @@ jobs: cts: runs-on: ubuntu-20.04 + timeout-minutes: 20 needs: - client_javascript - client_java