Skip to content

Commit

Permalink
actions: sync options with free-disk-space
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Dec 9, 2024
1 parent 50f2267 commit 58d1738
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
- uses: thiagokokada/free-disk-space@main
with:
opt: true
swap-storage: false
tool-cache: true
usrlocal: true
usrmisc: true
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-flakes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
- uses: thiagokokada/free-disk-space@main
with:
opt: true
swap-storage: false
tool-cache: true
usrlocal: true
usrmisc: true
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
Expand Down
4 changes: 2 additions & 2 deletions actions/steps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ with constants;
freeDiskSpaceStep = {
uses = actions.free-disk-space;
"with" = {
swap-storage = false;
tool-cache = true;
opt = true;
tool-cache = true;
usrlocal = true;
usrmisc = true;
};
};
checkoutStep = {
Expand Down

0 comments on commit 58d1738

Please sign in to comment.