From e2de945cd2138ee27d9ff3622b9367e1b088d576 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 8 Sep 2025 13:55:45 +1000 Subject: [PATCH] Replace Nix installation steps in workflow --- .github/workflows/update.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 09a8b39..8d4a5bc 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -11,9 +11,17 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v5 - - name: Install Determinate Nix - uses: DeterminateSystems/determinate-nix-action@v3 - - uses: DeterminateSystems/magic-nix-cache-action@main + - uses: wimpysworld/nothing-but-nix@main + with: + hatchet-protocol: 'carve' + - uses: cachix/install-nix-action@v31 + with: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + - uses: cachix/cachix-action@v14 + with: + name: rde + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + extraPullNames: rstats-on-nix, nix-community - run: cd templates/rde/ && nix develop -c p-updateDeps - name: Update n flake.lock uses: DeterminateSystems/update-flake-lock@v27