Skip to content

Commit

Permalink
fix: run free space reports with sudo as well
Browse files Browse the repository at this point in the history
  • Loading branch information
easimon committed Nov 28, 2023
1 parent 557cb00 commit fe0431d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ runs:
shell: bash
run: |
echo "Memory and swap:"
free
sudo free
echo
swapon --show
sudo swapon --show
echo
echo "Available storage:"
df -h
sudo df -h
echo
- name: Maximize build disk space
Expand Down Expand Up @@ -189,10 +189,10 @@ runs:
shell: bash
run: |
echo "Memory and swap:"
free
sudo free
echo
swapon --show
sudo swapon --show
echo
echo "Available storage:"
df -h
sudo df -h

0 comments on commit fe0431d

Please sign in to comment.