Skip to content

Commit dfb55e6

Browse files
committed
workflows action free-disk-space
1 parent 3e5c991 commit dfb55e6

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/ci-ver.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,21 @@ jobs:
4444
fail-fast: false
4545
matrix: ${{fromJSON(needs.generate-matrix.outputs.matrix)}}
4646
steps:
47+
- name: Free Disk Space (Ubuntu)
48+
uses: jlumbroso/free-disk-space@main
49+
with:
50+
# this might remove tools that are actually needed,
51+
# if set to "true" but frees about 6 GB
52+
tool-cache: true
53+
54+
# all of these default to true, but feel free to set to
55+
# "false" if necessary for your workflow
56+
android: true
57+
dotnet: true
58+
haskell: true
59+
large-packages: true
60+
docker-images: true
61+
swap-storage: true
4762
-
4863
name: Checkout
4964
uses: actions/checkout@v4

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,21 @@ jobs:
4242
- "3.0.2"
4343

4444
steps:
45+
- name: Free Disk Space (Ubuntu)
46+
uses: jlumbroso/free-disk-space@main
47+
with:
48+
# this might remove tools that are actually needed,
49+
# if set to "true" but frees about 6 GB
50+
tool-cache: true
51+
52+
# all of these default to true, but feel free to set to
53+
# "false" if necessary for your workflow
54+
android: true
55+
dotnet: true
56+
haskell: true
57+
large-packages: true
58+
docker-images: true
59+
swap-storage: true
4560
-
4661
name: Checkout
4762
uses: actions/checkout@v4

0 commit comments

Comments
 (0)