From 69f2088fdc277ea175c9856ad96efe61c977d6e1 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 6 Jul 2023 11:03:50 +0900 Subject: [PATCH] Prefer newer Nix action for better cache https://discourse.nixos.org/t/the-magic-nix-cache-a-github-action-for-speeding-up-your-nix-workflows/29665 --- .github/workflows/ci-nix.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-nix.yml b/.github/workflows/ci-nix.yml index 630ee53..44ec5de 100644 --- a/.github/workflows/ci-nix.yml +++ b/.github/workflows/ci-nix.yml @@ -26,7 +26,8 @@ jobs: timeout-minutes: 30 steps: - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v22 + - uses: DeterminateSystems/nix-installer-action@v2 + - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix flake check - run: nix develop --command ./bin/setup - name: Log current versions