3
0
Fork 0
mirror of https://github.com/dtolnay/install.git synced 2024-11-22 00:19:31 +01:00

Time out workflows after 45 minutes

GitHub's default timeout is 6 hours. Recently some of my GitHub Actions
jobs have started randomly stalling for that long, which is inconvenient
because it ties up a chunk of my runner quota. It apepars to be very
rare for a job to recover after stalling. It's better to time out
quicker and retry on a different runner.
This commit is contained in:
David Tolnay 2022-11-24 21:35:28 -08:00
parent eee5d890fa
commit 59115418f6
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable

View file

@ -13,6 +13,7 @@ jobs:
install:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: ./