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 1515 GO_VERSION : ' 1.23'
1616 CHOCOLATEY_VERSION : 2.2.0
1717 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+
1840 - uses : actions/checkout@v4
1941 with :
2042 fetch-depth : 0
You can’t perform that action at this time.
0 commit comments