Skip to content

Commit 5536fc6

Browse files
committed
disable actionlint until next NixOS release
1 parent e115ba0 commit 5536fc6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

formatter/flake-module.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
imports = [ inputs.treefmt-nix.flakeModule ];
44

55
perSystem =
6-
{ ... }:
6+
{ lib, pkgs, ... }:
77
{
88
treefmt = {
99
# Used to find the project root
@@ -14,7 +14,8 @@
1414
"non-critical-infra/secrets/*"
1515
];
1616

17-
programs.actionlint.enable = true;
17+
# older actionlint version don't recognize aarch64 builder
18+
programs.actionlint.enable = lib.versionAtLeast pkgs.actionlint.version "1.7.7";
1819
programs.deno.enable = true;
1920
programs.terraform.enable = true;
2021
programs.deadnix.enable = true;

0 commit comments

Comments
 (0)