File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 15
15
GO_VERSION : ' 1.23'
16
16
CHOCOLATEY_VERSION : 2.2.0
17
17
steps :
18
+ # temporary workaround for an error in free disk space action
19
+ # https://github.com/jlumbroso/free-disk-space/issues/14
20
+ - name : Update Package List and Remove Dotnet
21
+ run : |
22
+ sudo apt-get update
23
+ sudo apt-get remove -y '^dotnet-.*'
24
+
25
+ # https://github.com/marketplace/actions/free-disk-space-ubuntu
26
+ - name : Free Disk Space
27
+ uses : jlumbroso/free-disk-space@main
28
+ with :
29
+ # this might remove tools that are actually needed
30
+ tool-cache : false
31
+
32
+ # all of these default to true
33
+ android : true
34
+ dotnet : true
35
+ haskell : true
36
+ large-packages : true
37
+ docker-images : true
38
+ swap-storage : false
39
+
18
40
- uses : actions/checkout@v4
19
41
with :
20
42
fetch-depth : 0
You can’t perform that action at this time.
0 commit comments