Skip to content

Commit 26d34c2

Browse files
committed
speed up job
1 parent 83223f6 commit 26d34c2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ jobs:
3838
- uses: actions/checkout@v4
3939

4040
- name: apt install -y ripgrep
41-
run: sudo apt install -y ripgrep
41+
run: |
42+
echo "set man-db/auto-update false" | sudo debconf-communicate
43+
sudo dpkg-reconfigure man-db
44+
sudo apt install -y ripgrep
4245
4346
# a setting "foo" exists if there is any use of `import_from_settings("foo")` or {% settings_value "foo" %}
4447
# note about quotations: '\bsettings_value[ ]+["'"'"']([A-Z_]+)' -> \bsettings_value[ ]+["']([A-Z_]+)

0 commit comments

Comments
 (0)