File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
build :
10
10
runs-on : ubuntu-latest
11
+ timeout-minutes : 10 # reasonable limits to be on the safe side
11
12
steps :
12
13
# checkout pull-request head reference with required security restrictions in case of "pull_request_target" event
13
14
- name : Checkout PR
84
85
85
86
publish-snapshot :
86
87
needs : [ build ]
88
+ timeout-minutes : 10 # reasonable limits to be on the safe side
87
89
# runs only if the event is triggered against secure environment ("master" branch) and
88
90
# produced artifact version is related to SNAPSHOT
89
91
if : >
@@ -121,6 +123,7 @@ jobs:
121
123
122
124
publish-final :
123
125
needs : [ build ]
126
+ timeout-minutes : 10 # reasonable limits to be on the safe side
124
127
# runs only if the event is triggered against secure environment ("master" branch) and
125
128
# produced artifact version is final
126
129
if : >
Original file line number Diff line number Diff line change 186
186
<configuration >
187
187
<gpgArguments >
188
188
<arg >--no-tty</arg >
189
+ <!-- Prevent `gpg` from using pinentry programs -->
190
+ <arg >--pinentry-mode</arg >
191
+ <arg >loopback</arg >
189
192
</gpgArguments >
190
193
</configuration >
191
194
<executions >
You can’t perform that action at this time.
0 commit comments