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 f37bf2f commit 4184e24Copy full SHA for 4184e24
.github/workflows/coverage.yml
@@ -42,7 +42,10 @@ jobs:
42
# This CI workflow can run into space issue, so we're cleaning up some
43
# space here.
44
- name: Create some more space
45
- run: rm -rf /opt/hostedtoolcache
+ run: |
46
+ cd /opt
47
+ find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';'
48
+ rm -rf /opt/hostedtoolcache
49
50
- name: Checkout repository
51
uses: actions/checkout@v4
0 commit comments