This is an automated email from the ASF dual-hosted git repository. abhi pushed a commit to branch ranger-5021 in repository https://gitbox.apache.org/repos/asf/ranger.git
commit e77fcce7caca4f29bb4f42fb8b7fa7897bfa9242 Author: Abhishek Kumar <[email protected]> AuthorDate: Fri Dec 6 11:26:26 2024 -0800 Add timeouts to jobs in CI --- .github/workflows/maven.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3ddb1a277..4241eddae 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,6 +33,7 @@ on: jobs: build-8: runs-on: ubuntu-latest + timeout-minutes: 30 steps: - uses: actions/checkout@v4 - name: Set up JDK 8 @@ -51,6 +52,7 @@ jobs: build-11: runs-on: ubuntu-latest + timeout-minutes: 30 steps: - uses: actions/checkout@v4 - name: Set up JDK 11 @@ -72,6 +74,7 @@ jobs: - build-8 - build-11 runs-on: ubuntu-latest + timeout-minutes: 30 steps: - uses: actions/checkout@v4 - name: Download build-8 artifacts
