From ded9ff6c41772f42cb224185160733e72c7c08af Mon Sep 17 00:00:00 2001 From: ckie Date: Fri, 24 Dec 2021 14:32:14 +0200 Subject: [PATCH] update_flake_lock.py: try again --- .github/workflows/update_flake_lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_flake_lock.py b/.github/workflows/update_flake_lock.py index 73d8842..7bb57f6 100755 --- a/.github/workflows/update_flake_lock.py +++ b/.github/workflows/update_flake_lock.py @@ -40,7 +40,7 @@ class FlakeLock: def is_github(self, flake_input): n = self._lock["nodes"][flake_input] - return n.type == "github"; + return n["locked"]["type"] == "github"; def get_input(self, flake_input): n = self._lock["nodes"][flake_input]