We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83223f6 commit 26d34c2Copy full SHA for 26d34c2
.github/workflows/ci.yml
@@ -38,7 +38,10 @@ jobs:
38
- uses: actions/checkout@v4
39
40
- name: apt install -y ripgrep
41
- run: sudo apt install -y ripgrep
+ run: |
42
+ echo "set man-db/auto-update false" | sudo debconf-communicate
43
+ sudo dpkg-reconfigure man-db
44
+ sudo apt install -y ripgrep
45
46
# a setting "foo" exists if there is any use of `import_from_settings("foo")` or {% settings_value "foo" %}
47
# note about quotations: '\bsettings_value[ ]+["'"'"']([A-Z_]+)' -> \bsettings_value[ ]+["']([A-Z_]+)
0 commit comments