From ae8c93f7d22612cb88288ee9231966d566ec2cc6 Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Wed, 3 Sep 2025 10:02:41 +0100 Subject: [PATCH] ci: Use DeterminateSystems/nix-installer-action instead of cachix action This is the preferred upstream action and once it is incorporated into devbox-install-action this can be removed from here too. --- .github/workflows/e2e.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 1286a8fb4..de37ef1bf 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -39,13 +39,13 @@ jobs: with: fetch-depth: 0 - # Install nix using cachix/install-nix-action if running on ARC runners - # See: https://github.com/DeterminateSystems/nix-installer-action/issues/68 - name: Install Nix on self-hosted ARC runners - uses: cachix/install-nix-action@v31 + uses: DeterminateSystems/nix-installer-action@v19 if: inputs.runs-on == 'self-hosted-ncn-dind' with: - github_access_token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} + logger: pretty + extra-conf: experimental-features = ca-derivations fetch-closure - name: Install devbox uses: jetify-com/devbox-install-action@v0.13.0