From 8c292b9a9f771920587dd8de195b4528392cbfd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 14:44:54 +0000 Subject: [PATCH 1/3] chore: Bump the production-dependencies group with 4 updates Bumps Microsoft.Agents.AI from 1.0.0-preview.251001.3 to 1.0.0-preview.251219.1 Bumps Microsoft.Agents.AI.OpenAI from 1.0.0-preview.251001.3 to 1.0.0-preview.251219.1 Bumps Microsoft.Agents.AI.Workflows from 1.0.0-preview.251001.3 to 1.0.0-preview.251219.1 Bumps OpenAI from 2.4.0 to 2.8.0 --- updated-dependencies: - dependency-name: Microsoft.Agents.AI dependency-version: 1.0.0-preview.251219.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: Microsoft.Agents.AI.OpenAI dependency-version: 1.0.0-preview.251219.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: OpenAI dependency-version: 2.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: Microsoft.Agents.AI.Workflows dependency-version: 1.0.0-preview.251219.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- src/Orchestrator.App/Orchestrator.App.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Orchestrator.App/Orchestrator.App.csproj b/src/Orchestrator.App/Orchestrator.App.csproj index ed1cb7c0..09f094cf 100644 --- a/src/Orchestrator.App/Orchestrator.App.csproj +++ b/src/Orchestrator.App/Orchestrator.App.csproj @@ -9,10 +9,10 @@ - - - + + + - + From 205b1a338395cd307926592a913dea65ed89623a Mon Sep 17 00:00:00 2001 From: sterob-2 Date: Thu, 1 Jan 2026 18:38:12 +0100 Subject: [PATCH 2/3] fix: add CancellationToken parameter to HandleAsync for Agent Framework API changes --- src/Orchestrator.App/WorkflowExecutors.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Orchestrator.App/WorkflowExecutors.cs b/src/Orchestrator.App/WorkflowExecutors.cs index 78577922..608d8a79 100644 --- a/src/Orchestrator.App/WorkflowExecutors.cs +++ b/src/Orchestrator.App/WorkflowExecutors.cs @@ -36,7 +36,8 @@ public PlannerExecutor(WorkContext context) : base("Planner") public override async ValueTask HandleAsync( WorkflowInput input, - IWorkflowContext context) + IWorkflowContext context, + CancellationToken cancellationToken = default) { var planPath = $"orchestrator/plans/issue-{input.IssueNumber}.md"; From 9a3f0898441f362405909b253b73a4a0e38671ca Mon Sep 17 00:00:00 2001 From: sterob-2 Date: Thu, 1 Jan 2026 18:59:22 +0100 Subject: [PATCH 3/3] fix: disable Docker build cache to prevent corruption errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disable GitHub Actions cache (type=gha) which was causing "short read: unexpected EOF" errors on self-hosted runners. This is a temporary fix to unblock PR builds. The cache was corrupted and causing failures: - PR #10: short read: expected 178216581 bytes but got 157859840 - PR #8: short read: expected 32249964 bytes but got 26836992 Using no-cache: true to ensure reliable builds until cache can be properly cleared and re-initialized. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/docker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0f0ba66a..d10e49c7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -59,9 +59,8 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max platforms: linux/amd64 + no-cache: true - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@master