484: flake.lock: Update r=zowoq a=nix-infra-bot



Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: zowoq <59103226+zowoq@users.noreply.github.com>
This commit is contained in:
bors[bot] 2023-03-17 03:51:39 +00:00 committed by GitHub
commit 5f69f40145
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 17 deletions

30
flake.lock generated
View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1678671394,
"narHash": "sha256-fe+OMC3+0BsSnvSWm+oYbMgQup32TABfOsvJH23J368=",
"lastModified": 1678951780,
"narHash": "sha256-Bve469g/b+AQ8cBIjlmaDVW/XZdZK9HUh8/UwV9Wbdc=",
"owner": "nix-community",
"repo": "disko",
"rev": "d19c4fa316c4ea7127a89304c01839cbbcaf1f64",
"rev": "a2dec6e4e0fe54a9e1610299ac3aaeeb48eab50c",
"type": "github"
},
"original": {
@ -51,11 +51,11 @@
]
},
"locked": {
"lastModified": 1676558019,
"narHash": "sha256-obUHCMMWbffb3k0b9YIChsJ2Z281BcDYnTPTbJRP6vs=",
"lastModified": 1678923240,
"narHash": "sha256-qoa7OvbboojbwZnCaL5+r2pFNhLkxRUsD9+RaoM9zjw=",
"owner": "hercules-ci",
"repo": "hercules-ci-effects",
"rev": "fdbc15b55db8d037504934d3af52f788e0593380",
"rev": "0eec846f63e69f935ae1c06280b3b444f98d95e5",
"type": "github"
},
"original": {
@ -66,11 +66,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1678662842,
"narHash": "sha256-CFoxDaOplrfmw4djjJ+CvoME+DVywWc8a+d5Pqcjfg8=",
"lastModified": 1678951128,
"narHash": "sha256-UcfF8/GyllRG/kfOcW/pr9s+YdoND430umc/MkfWpdk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "26d9471ea90627ea1adb69f47be751da9dd49d24",
"rev": "bf209075b7584ef4fe74db23a86f719555d31d49",
"type": "github"
},
"original": {
@ -224,11 +224,11 @@
]
},
"locked": {
"lastModified": 1678665900,
"narHash": "sha256-KJNo6l69BweFXd0+r+qI59LvY1hIJQJ95PqO08Q6mAo=",
"lastModified": 1678925111,
"narHash": "sha256-99FtgtDzEaCLxgtcYwIpWN1E1JtcXVBi4qFjdtq+80s=",
"owner": "numtide",
"repo": "srvos",
"rev": "68f8c40ade2300ad005903f2e5c89a6e02633240",
"rev": "5f9e0ce324766bce9fcbb944b592b5a8554025a5",
"type": "github"
},
"original": {
@ -244,11 +244,11 @@
]
},
"locked": {
"lastModified": 1678616506,
"narHash": "sha256-JBlOlpPj7VtzFTApEHioFl8YSVhyT0dMgymV8t7sW1g=",
"lastModified": 1678901796,
"narHash": "sha256-9myDjq948gHbiv16HnFQZaswQEpNodE/CuGCfDNnv/g=",
"owner": "numtide",
"repo": "treefmt-nix",
"rev": "5ec73d38dde4c766a9ae19840fc6afa724096f00",
"rev": "0f560a84215e79facd2833b20bfdc2033266f126",
"type": "github"
},
"original": {

View file

@ -13,9 +13,9 @@ from invoke import task
ROOT = Path(__file__).parent.resolve()
os.chdir(ROOT)
# Deploy to all hosts in parallel
def deploy_nixos(hosts: List[DeployHost]) -> None:
g = DeployGroup(hosts)
res = subprocess.run(
@ -121,7 +121,6 @@ def update_hound_repos(c):
next_url = "https://api.github.com/orgs/{}/repos".format(org)
while next_url is not None:
if github_token is not None:
headers = {"Authorization": f"token {github_token}"}
repo_resp = requests.get(next_url, headers=headers)