File tree Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 26
26
jobs :
27
27
build :
28
28
runs-on : ubuntu-latest
29
+ timeout-minutes : 30
29
30
30
31
strategy :
31
32
matrix :
72
73
73
74
checkstyle :
74
75
runs-on : ubuntu-latest
76
+ timeout-minutes : 15
75
77
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
76
78
77
79
strategy :
94
96
95
97
pmd :
96
98
runs-on : ubuntu-latest
99
+ timeout-minutes : 15
97
100
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
98
101
99
102
strategy :
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ permissions:
14
14
jobs :
15
15
check-code :
16
16
runs-on : ubuntu-latest
17
+ timeout-minutes : 30
17
18
steps :
18
19
- uses : actions/checkout@v4
19
20
48
49
prepare-release :
49
50
runs-on : ubuntu-latest
50
51
needs : [check-code]
52
+ timeout-minutes : 10
51
53
outputs :
52
54
upload_url : ${{ steps.create_release.outputs.upload_url }}
53
55
steps :
@@ -109,6 +111,7 @@ jobs:
109
111
publish-maven :
110
112
runs-on : ubuntu-latest
111
113
needs : [prepare-release]
114
+ timeout-minutes : 60
112
115
steps :
113
116
- uses : actions/checkout@v4
114
117
@@ -140,6 +143,7 @@ jobs:
140
143
publish-pages :
141
144
runs-on : ubuntu-latest
142
145
needs : [prepare-release]
146
+ timeout-minutes : 15
143
147
steps :
144
148
- uses : actions/checkout@v4
145
149
@@ -169,6 +173,7 @@ jobs:
169
173
after-release :
170
174
runs-on : ubuntu-latest
171
175
needs : [publish-maven]
176
+ timeout-minutes : 10
172
177
steps :
173
178
- uses : actions/checkout@v4
174
179
Original file line number Diff line number Diff line change 27
27
token-check :
28
28
runs-on : ubuntu-latest
29
29
if : ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30
+ timeout-minutes : 5
30
31
outputs :
31
32
hasToken : ${{ steps.check-token.outputs.has }}
32
33
steps :
40
41
runs-on : ubuntu-latest
41
42
needs : token-check
42
43
if : ${{ needs.token-check.outputs.hasToken }}
44
+ timeout-minutes : 30
43
45
steps :
44
46
- uses : actions/checkout@v4
45
47
with :
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
publish-maven :
11
11
runs-on : ubuntu-latest
12
+ timeout-minutes : 60
12
13
steps :
13
14
- uses : actions/checkout@v4
14
15
You can’t perform that action at this time.
0 commit comments