Conversation
Update direct module dependencies to their latest releases:
- charm.land/lipgloss/v2 v2.0.3 -> v2.0.4
- golang.org/x/net v0.55.0 -> v0.56.0
- golang.org/x/term v0.43.0 -> v0.44.0
plus transitive golang.org/x/{sync,sys,text}. Raise the go directive to
1.26.4 to build against the latest patch toolchain.
Go 1.26.4 currently ships only on the nixos-26.05 release branch (nixpkgs-unstable is still on 1.26.3), so pin the flake's nixpkgs input explicitly to nixos-26.05 instead of the indirect registry reference. This gives a reproducible toolchain that matches the go.mod directive, tracks a stable channel suitable for a release package, and clears the deprecated indirect-registry warning. Also recompute vendorHash for the bumped modules and align the flake description with the project tagline.
The other actions already track their latest releases (setup-go, golangci-lint, goreleaser via floating major tags; install-nix-action and deploy-aur via SHA pins at their newest tags).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the Go modules (lipgloss, golang.org/x/net + term, transitive x deps), raises the
go.modtoolchain to 1.26.4, and bumpsactions/checkoutto v7.Go 1.26.4 only ships on the
nixos-26.05branch right now (unstable is still on 1.26.3), so the flake'snixpkgsinput is now pinned explicitly tonixos-26.05— reproducible, matches the toolchain, and clears Determinate's indirect-registry warning.vendorHashis recomputed for the bumped modules.