We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 113ab4b commit 3e0bf91Copy full SHA for 3e0bf91
.github/actions/install/action.yml
@@ -54,6 +54,15 @@ runs:
54
run: |
55
echo "${PWD}/venv/bin" >> $GITHUB_PATH
56
57
+ - name: Free up disk space
58
+ if: steps.restore.outputs.cache-hit != 'true'
59
+ shell: bash
60
+ run: |
61
+ # See https://github.com/actions/runner-images/issues/9344 for context.
62
+ sudo rm -rf /opt/ghc
63
+ sudo rm -rf /usr/share/dotnet
64
+ sudo rm -rf /usr/local/share/boost
65
+
66
- name: Install
67
if: steps.restore.outputs.cache-hit != 'true'
68
shell: bash
0 commit comments