From 58d17383ebe22fd8db6caaed72406c03bfd61598 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 9 Dec 2024 18:37:42 +0000 Subject: [PATCH] actions: sync options with free-disk-space --- .github/workflows/build-and-cache.yml | 2 +- .github/workflows/update-flakes.yml | 2 +- actions/steps.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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 = {