Skip to content

Commit 64afadd

Browse files
Merge pull request #9347 from rabbitmq/mergify/bp/v3.11.x/pr-9345
Try to avoid running out of space in the OCI workflow in actions (backport #9337) (backport #9345)
2 parents 48d7304 + 41424a1 commit 64afadd

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/oci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,18 @@ jobs:
3838
steps:
3939
- name: Free Disk Space (Ubuntu)
4040
uses: jlumbroso/free-disk-space@main
41+
with:
42+
# this might remove tools that are actually needed,
43+
# if set to "true" but frees about 6 GB
44+
tool-cache: false
45+
# all of these default to true, but feel free to set to
46+
# "false" if necessary for your workflow
47+
android: true
48+
dotnet: true
49+
haskell: true
50+
large-packages: true
51+
docker-images: false
52+
swap-storage: true
4153

4254
- name: Checkout
4355
uses: actions/checkout@v4

0 commit comments

Comments
 (0)