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.
2 parents 8661300 + 7ddbab3 commit 423a817Copy full SHA for 423a817
.github/workflows/installation-chart.yaml
@@ -28,6 +28,20 @@ jobs:
28
# Please remember to update the CI Schedule Workflow when we add a new version.
29
k8s: [ v1.29.0, v1.30.0, v1.31.0 ]
30
steps:
31
+ # Free up disk space on Ubuntu
32
+ - name: Free Disk Space (Ubuntu)
33
+ uses: jlumbroso/free-disk-space@main
34
+ with:
35
+ # this might remove tools that are actually needed, if set to "true" but frees about 6 GB
36
+ tool-cache: false
37
+ # all of these default to true, but feel free to set to "false" if necessary for your workflow
38
+ android: true
39
+ dotnet: true
40
+ haskell: true
41
+ large-packages: false
42
+ docker-images: false
43
+ swap-storage: false
44
+
45
- name: Checkout
46
uses: actions/checkout@v4
47
with:
0 commit comments