diff --git a/.github/workflows/build-and-cache.yml b/.github/workflows/build-and-cache.yml index e65633a8..2695c9ef 100644 --- a/.github/workflows/build-and-cache.yml +++ b/.github/workflows/build-and-cache.yml @@ -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: diff --git a/.github/workflows/update-flakes.yml b/.github/workflows/update-flakes.yml index eed46c48..a3ec7471 100644 --- a/.github/workflows/update-flakes.yml +++ b/.github/workflows/update-flakes.yml @@ -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: diff --git a/actions/steps.nix b/actions/steps.nix index 79a0c907..e61be18b 100644 --- a/actions/steps.nix +++ b/actions/steps.nix @@ -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 = {