Skip to content

Commit 19fc813

Browse files
committed
feat: update CI to use a new nix version
1 parent f28616b commit 19fc813

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/flakehub-publish-tagged.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- uses: "actions/checkout@v3"
2020
with:
2121
ref: "${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}"
22-
- uses: "nixbuild/nix-quick-install-action@v32"
2322
- uses: "DeterminateSystems/flakehub-push@main"
2423
with:
2524
visibility: "public"

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
inherit (fwlib') blockTypes actions dataWith flakeModule grow growOn findTargets;
7171
};
7272
in
73-
assert inputs.nixpkgs.lib.assertMsg ((builtins.compareVersions builtins.nixVersion "2.18") >= 0) "The truth is: you'll need a newer nix version to use Standard (minimum: v2.18).";
73+
assert inputs.nixpkgs.lib.assertMsg ((builtins.compareVersions builtins.nixVersion "2.23") >= 0) "The truth is: you'll need a newer nix version to use Standard (minimum: v2.23).";
7474
(import ./dogfood.nix (inputs
7575
// {
7676
std = std // {inherit (inputs.self) narHash;};

0 commit comments

Comments
 (0)