Skip to content

Commit 23f7b83

Browse files
authored
image-deps: bump Ubuntu + Visual Studio + GitHub Actions runner (#79)
this patch updates three of our image deps: - Ubuntu images eventually get deleted from the cloud-images server - Visual Studio installer constantly changes hash at the same URL - GitHub Actions runner needs to stay up to date to avoid getting rejected
1 parent 5bb4023 commit 23f7b83

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

server/nixos/image-deps.nix

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
writeText,
88
}: let
99
jammy-server-cloudimg-amd64_img = fetchurl {
10-
url = "https://cloud-images.ubuntu.com/jammy/20250725/jammy-server-cloudimg-amd64.img";
11-
hash = "sha256-sRmpeNy2YZR2FnTCOoYKdc23d46V4iK1HXozht/jySA=";
10+
url = "https://cloud-images.ubuntu.com/jammy/20251023/jammy-server-cloudimg-amd64.img";
11+
hash = "sha256-kzMDphmvdsDtFzTtGjK95VON4zbWhXhiiD7HyPUJoFw=";
1212
};
1313
in linkFarm "image-deps" {
1414
"cargo-config.toml" = writeText "cargo-config.toml" ''
@@ -21,8 +21,8 @@ in linkFarm "image-deps" {
2121
hash = "sha256-5LH57GE4YSMiR+DLY2HJuxqGUl1ijs1Ln+rcnvngwig=";
2222
};
2323
"macos13/actions-runner-osx-x64.tar.gz" = fetchurl {
24-
url = "https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-osx-x64-2.328.0.tar.gz";
25-
hash = "sha256-kMMtxvKShVM5VjFI84WdxdQC8jfs31cBDIQd88jRLMg=";
24+
url = "https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-osx-x64-2.330.0.tar.gz";
25+
hash = "sha256-QKMre4fiW3a1leIB4K83b8scO3g4/iFFKQl1YJBHPqk=";
2626
};
2727
"macos13/uv-installer.sh" = fetchurl {
2828
url = "https://github.com/astral-sh/uv/releases/download/0.8.17/uv-installer.sh";
@@ -45,8 +45,8 @@ in linkFarm "image-deps" {
4545
hash = "sha256-ozOfsATD0LuYYroLzgAYYf5cvenBDRZZHrPznubNPn8=";
4646
};
4747
"ubuntu2204/actions-runner-linux-x64.tar.gz" = fetchurl {
48-
url = "https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-linux-x64-2.328.0.tar.gz";
49-
hash = "sha256-AQZvrTook+Y+bKiArjofrVv5Mp1g537hXyuXwUjDzU4=";
48+
url = "https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-linux-x64-2.330.0.tar.gz";
49+
hash = "sha256-r1wz+pTzzDO46Xk3k5E2prBBl+ba38+ztuM64b9B55o=";
5050
};
5151
"ubuntu2204/uv-installer.sh" = fetchurl {
5252
url = "https://github.com/astral-sh/uv/releases/download/0.8.17/uv-installer.sh";
@@ -82,15 +82,15 @@ in linkFarm "image-deps" {
8282
};
8383
"windows10/vs_community.exe" = fetchurl {
8484
url = "https://aka.ms/vs/17/release/vs_community.exe";
85-
hash = "sha256-MV9hfmY2Rg+pMNhspUn7ur1Zj6QdAU1cXS2va4ZnuSA=";
85+
hash = "sha256-xvyuf9hYx1r6zFIe6cDsgT+uJOeOCsGzke5iXSNlBx8=";
8686
};
8787
"windows10/rustup-init.exe" = fetchurl {
8888
url = "https://static.rust-lang.org/rustup/archive/1.28.1/x86_64-pc-windows-msvc/rustup-init.exe";
8989
hash = "sha256-e4MDmhuTBbDFDyOy4vAzGbjXhZsoEG5JuoLAbYEonfY=";
9090
};
9191
"windows10/actions-runner-win-x64.zip" = fetchurl {
92-
url = "https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-win-x64-2.328.0.zip";
93-
hash = "sha256-pzrhkriyt4Lh2QwIkjAwkwsLlu05T+VkE6BzzG9pSHc=";
92+
url = "https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-win-x64-2.330.0.zip";
93+
hash = "sha256-p0aefylJZXMn/ddWiP2IWOE1IgKEfQJNaLk94DOZB3k=";
9494
};
9595
"windows10/Git-2.45.1-64-bit.exe" = fetchurl {
9696
url = "https://github.com/git-for-windows/git/releases/download/v2.45.1.windows.1/Git-2.45.1-64-bit.exe";

0 commit comments

Comments
 (0)