From fd97209ed794e1d07f5f354b9c04142afc9632b1 Mon Sep 17 00:00:00 2001 From: kalle Date: Sat, 31 Jan 2026 10:51:08 +0100 Subject: [PATCH] ci: install nix manually instead of using action The DeterminateSystems/nix-installer-action requires Node 18+ but the Gitea act runner uses Node 16. Use curl installer directly instead. Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/flake-update.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/flake-update.yaml b/.gitea/workflows/flake-update.yaml index a22e06f..3c73533 100644 --- a/.gitea/workflows/flake-update.yaml +++ b/.gitea/workflows/flake-update.yaml @@ -11,7 +11,10 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: DeterminateSystems/nix-installer-action@main + - name: Install Nix + run: | + curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux --no-confirm + echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH" - name: Update flake inputs run: nix flake update