Use ubuntu-24.04 instead of ubuntu-latest (#2210)

This commit is contained in:
Ayaz Salikhov
2025-02-12 11:35:03 +00:00
committed by GitHub
parent 8c38e0f00f
commit 976ed6c2c8
9 changed files with 22 additions and 22 deletions

View File

@@ -12,7 +12,7 @@ REPOSITORY_OWNER = os.environ["REPOSITORY_OWNER"]
def generate_matrix() -> dict[str, Any]:
dockerfiles = sorted(file.name for file in THIS_DIR.glob("*.dockerfile"))
runs_on = ["ubuntu-latest", "ubuntu-22.04-arm"]
runs_on = ["ubuntu-24.04", "ubuntu-22.04-arm"]
return {
"dockerfile": dockerfiles,
"runs-on": runs_on,