File tree 8 files changed +22
-0
lines changed
8 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
41
41
jobs :
42
42
build-clang :
43
43
runs-on : ubuntu-22.04
44
+ timeout-minutes : 10
44
45
steps :
45
46
- name : Harden Runner
46
47
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
57
57
jobs :
58
58
build :
59
59
runs-on : ubuntu-22.04
60
+ timeout-minutes : 10
60
61
steps :
61
62
- name : Harden Runner
62
63
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
43
43
jobs :
44
44
scan-build :
45
45
runs-on : ubuntu-22.04
46
+ timeout-minutes : 10
46
47
steps :
47
48
- name : Harden Runner
48
49
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
74
75
75
76
cppcheck :
76
77
runs-on : ubuntu-22.04
78
+ timeout-minutes : 10
77
79
steps :
78
80
- name : Harden Runner
79
81
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
@@ -101,6 +103,7 @@ jobs:
101
103
# scan all files also with older cppcheck version from ubuntu 20.04.
102
104
cppcheck_old :
103
105
runs-on : ubuntu-20.04
106
+ timeout-minutes : 10
104
107
steps :
105
108
- name : Harden Runner
106
109
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
@@ -129,6 +132,7 @@ jobs:
129
132
contents : read
130
133
security-events : write
131
134
runs-on : ubuntu-latest
135
+ timeout-minutes : 10
132
136
133
137
steps :
134
138
- name : Harden Runner
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ permissions: # added using https://github.com/step-security/secure-workflows
29
29
jobs :
30
30
profile-checks :
31
31
runs-on : ubuntu-latest
32
+ timeout-minutes : 5
33
+
32
34
steps :
33
35
- name : Harden Runner
34
36
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
Original file line number Diff line number Diff line change 27
27
contents : read
28
28
security-events : write
29
29
runs-on : ubuntu-latest
30
+ timeout-minutes : 10
30
31
31
32
steps :
32
33
- name : Harden Runner
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
21
21
jobs :
22
22
codespell :
23
23
runs-on : ubuntu-22.04
24
+ timeout-minutes : 5
24
25
steps :
25
26
- name : Harden Runner
26
27
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
49
49
jobs :
50
50
test-main :
51
51
runs-on : ubuntu-22.04
52
+ timeout-minutes : 10
52
53
env :
53
54
SHELL : /bin/bash
54
55
steps :
96
97
97
98
test-fs :
98
99
runs-on : ubuntu-22.04
100
+ timeout-minutes : 10
99
101
env :
100
102
SHELL : /bin/bash
101
103
steps :
@@ -134,6 +136,7 @@ jobs:
134
136
135
137
test-environment :
136
138
runs-on : ubuntu-22.04
139
+ timeout-minutes : 10
137
140
env :
138
141
SHELL : /bin/bash
139
142
steps :
@@ -172,6 +175,7 @@ jobs:
172
175
173
176
test-utils :
174
177
runs-on : ubuntu-22.04
178
+ timeout-minutes : 10
175
179
env :
176
180
SHELL : /bin/bash
177
181
steps :
@@ -212,6 +216,7 @@ jobs:
212
216
213
217
test-network :
214
218
runs-on : ubuntu-22.04
219
+ timeout-minutes : 10
215
220
env :
216
221
SHELL : /bin/bash
217
222
steps :
Original file line number Diff line number Diff line change 8
8
9
9
build_ubuntu_package :
10
10
image : ubuntu:rolling
11
+ timeout : 10 minutes
11
12
variables :
12
13
DEBIAN_FRONTEND : noninteractive
13
14
script :
@@ -24,6 +25,7 @@ build_ubuntu_package:
24
25
25
26
build_debian_package :
26
27
image : debian:buster
28
+ timeout : 10 minutes
27
29
variables :
28
30
DEBIAN_FRONTEND : noninteractive
29
31
script :
@@ -40,6 +42,7 @@ build_debian_package:
40
42
41
43
build_redhat_package :
42
44
image : almalinux:latest
45
+ timeout : 10 minutes
43
46
script :
44
47
- dnf update -y
45
48
- dnf install -y rpm-build gcc make
@@ -51,6 +54,7 @@ build_redhat_package:
51
54
52
55
build_fedora_package :
53
56
image : fedora:latest
57
+ timeout : 10 minutes
54
58
script :
55
59
- dnf update -y
56
60
- dnf install -y rpm-build gcc make
@@ -62,6 +66,7 @@ build_fedora_package:
62
66
63
67
build_src_package :
64
68
image : alpine:latest
69
+ timeout : 10 minutes
65
70
script :
66
71
- apk update
67
72
- apk upgrade
@@ -74,6 +79,7 @@ build_src_package:
74
79
75
80
build_no_apparmor :
76
81
image : ubuntu:latest
82
+ timeout : 10 minutes
77
83
variables :
78
84
DEBIAN_FRONTEND : noninteractive
79
85
script :
@@ -92,6 +98,7 @@ build_no_apparmor:
92
98
93
99
debian_ci :
94
100
image : registry.salsa.debian.org/salsa-ci-team/ci-image-git-buildpackage:latest
101
+ timeout : 10 minutes
95
102
variables :
96
103
DEBFULLNAME : " $GITLAB_USER_NAME"
97
104
DEBEMAIL : " $GITLAB_USER_EMAIL"
You can’t perform that action at this time.
0 commit comments