fix(ci,nix): resolve nix-update failures

- Add mkdir -p before lock file usage in nix-update workflow
- Patch beads go.mod to accept go 1.25.5 instead of 1.25.6

Fixes two independent issues blocking nix-update CI:
1. Missing lock file directory causing flock to fail
2. beads v0.49.3 requires go >= 1.25.6, environment has go 1.25.5

Both fixes verified with grep and diagnostics.
This commit is contained in:
m3tm3re
2026-02-04 19:43:46 +01:00
parent f1702eb994
commit 71a4c63fe7
2 changed files with 25 additions and 28 deletions

View File

@@ -330,6 +330,7 @@ jobs:
fi
fi
mkdir -p "/tmp/$USER"
LOCKFILE="/tmp/$USER/nix-update-git-lock"
trap 'rm -f "$LOCKFILE"; exit' EXIT INT TERM