diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 9be9739d9d..dff82c1deb 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -20,6 +20,7 @@ env: jobs: docker: + timeout-minutes: 10 runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a3a549305..04cc614faa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,7 @@ jobs: strip: arm-linux-gnueabihf-strip name: Package (${{ matrix.architecture }}) runs-on: ubuntu-latest + timeout-minutes: 40 steps: - name: git co uses: actions/checkout@v1 @@ -61,6 +62,7 @@ jobs: needs: [package] name: GitHub Release runs-on: ubuntu-latest + timeout-minutes: 5 steps: - name: git co uses: actions/checkout@v1 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 98f312d8ce..c11cfcc42b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,6 +8,7 @@ on: jobs: fmt: + timeout-minutes: 5 runs-on: ubuntu-18.04 container: image: docker://rust:1.47.0-buster @@ -17,6 +18,7 @@ jobs: - run: make check-fmt check: + timeout-minutes: 5 runs-on: ubuntu-18.04 container: image: docker://rust:1.47.0-buster @@ -25,6 +27,7 @@ jobs: - run: make check test: + timeout-minutes: 15 runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1