We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81278a7 commit abb5091Copy full SHA for abb5091
action.yml
@@ -184,10 +184,10 @@ runs:
184
BEFORE=$(getAvailableSpace)
185
186
sudo rm -f /var/lib/man-db/auto-update
187
- sudo dpkg-divert --local --rename --add /usr/bin/mandb && sudo ln -s /bin/true /usr/bin/mandb
188
sudo apt-get purge -y man-db manpages manpages-dev
189
sudo apt-get autoremove -y
190
- sudo dpkg-divert --rename --remove /usr/bin/mandb
+ # Clean caches
+ sudo rm -rf /var/lib/apt/lists/* /var/cache/apt/* || true
191
192
AFTER=$(getAvailableSpace)
193
SAVED=$((AFTER-BEFORE))
0 commit comments