File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 29
29
with :
30
30
persist-credentials : false
31
31
32
+ # the man-db trigger causes package installations to stall for several minutes at times. so just drop the package.
33
+ # see https://github.com/actions/runner/issues/4030
34
+ - name : Remove man-db package on ubuntu
35
+ if : matrix.os == 'ubuntu-24.04'
36
+ run : |
37
+ sudo apt-get update
38
+ sudo apt-get remove man-db
39
+
32
40
- name : Install missing software on ubuntu
33
41
if : matrix.os == 'ubuntu-24.04'
34
42
run : |
Original file line number Diff line number Diff line change 17
17
with :
18
18
persist-credentials : false
19
19
20
+ # the man-db trigger causes package installations to stall for several minutes at times. so just drop the package.
21
+ # see https://github.com/actions/runner/issues/4030
22
+ - name : Remove man-db package
23
+ run : |
24
+ sudo apt-get update
25
+ sudo apt-get remove man-db
26
+
20
27
- name : Install missing software
21
28
run : |
22
29
sudo apt-get update
You can’t perform that action at this time.
0 commit comments