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]