From 8d3b962f47cdb05df8ab8801da38cb3c55d50337 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 27 Feb 2026 14:42:24 +0100 Subject: [PATCH] ci : use ubuntu-latest for gguf-publish workflow (#19951) This commit changes the runner for the gguf-publish workflow from ubuntu-slim back to ubuntu-latest, which was updated in Commit 142cbe2ac68978e5dec3a2e19c1b64ef1c5740b1 ("ci : use new 1vCPU runner for lightweight jobs (#19107)"). The motivation for this is that the action used in the workflow depends on the docker daemon, which does not seem not available in the ubuntu-slim runner. This is currently causing an error in the workflow and preventing the gguf-publish workflow from running successfully. Today was the the first time since the original change (I think) that publish task has been run which may be why the issue was not noticed before. Refs: https://github.com/ggml-org/llama.cpp/actions/runs/22481900566 --- .github/workflows/gguf-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gguf-publish.yml b/.github/workflows/gguf-publish.yml index 0e95766459..5bdab0f157 100644 --- a/.github/workflows/gguf-publish.yml +++ b/.github/workflows/gguf-publish.yml @@ -21,7 +21,7 @@ on: jobs: deploy: - runs-on: ubuntu-slim + runs-on: ubuntu-latest steps: - uses: actions/checkout@v6