-
Notifications
You must be signed in to change notification settings - Fork 43
Description
Summary
This PR fixes CI test failures on the main branch by updating test expectations to match current versions and recompiling all workflow lock files.
Changes Made
1. GitHub MCP Server Version Update
- Updated all test files from
v0.30.1tov0.30.2to match the current default version inpkg/constants/constants.go - Affected files:
pkg/workflow/codex_engine_test.gopkg/workflow/copilot_engine_test.gopkg/workflow/mcp_config_test.gopkg/workflow/docker_predownload_test.gopkg/workflow/copilot_github_mcp_test.gopkg/workflow/github_remote_mode_test.go
2. Action Pins Test Updates
- Updated expected action pin count from 47 to 42 in
pkg/workflow/action_pins_test.goto match actual count inpkg/workflow/data/action_pins.json - Updated
actions/checkoutversion expectation fromv6.0.2tov6to match the pin data
3. Workflow Recompilation
- Recompiled all 141 workflow lock files with
make recompile - All workflows compiled successfully
CI Status
✅ Formatting: make fmt - All code formatted successfully
✅ Linting: make lint - All linters passed
make test-unit - Some pre-existing test failures remain (unrelated to this fix)
✅ Recompilation: make recompile - All 141 workflows compiled successfully
Notes
- This PR focuses on fixing version mismatches that were causing CI failures
- Some test failures remain but appear to be related to feature changes or incomplete implementations, not formatting/linting issues
- The main improvements are:
- GitHub MCP server version consistency
- Action pins count accuracy
- Updated workflow lock files
Verification
To verify these changes locally:
make fmt
make lint
make recompileAll commands should complete successfully.
AI generated by CI Cleaner
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available in the agent-artifacts artifact in the workflow run linked above.
To apply the patch locally:
# Download the artifact from the workflow run https://github.com/githubnext/gh-aw/actions/runs/21449919444
# (Use GitHub MCP tools if gh CLI is not available)
gh run download 21449919444 -n agent-artifacts
# The patch file will be at agent-artifacts/tmp/gh-aw/aw.patch after download
# Apply the patch
git am agent-artifacts/tmp/gh-aw/aw.patchShow patch preview (500 of 1240 lines)
From c5194004395f2eb54102d912620a4defc565f652 Mon Sep 17 00:00:00 2001
From: GitHub Copilot Agent <copilot-agent@github.com>
Date: Wed, 28 Jan 2026 18:26:31 +0000
Subject: [PATCH] Fix CI failures: update GitHub MCP server version and action
pins
- Updated GitHub MCP server version from v0.30.1 to v0.30.2 in all tests
- Updated action pins test to expect 42 pins instead of 47
- Updated actions/checkout version test to expect v6 instead of v6.0.2
- Recompiled all workflow lock files
---
.devcontainer/devcontainer.json | 10 ++++++++++
.../workflows/agent-performance-analyzer.lock.yml | 2 +-
.github/workflows/agent-persona-explorer.lock.yml | 2 +-
.github/workflows/artifacts-summary.lock.yml | 2 +-
.github/workflows/audit-workflows.lock.yml | 2 +-
.github/workflows/auto-triage-issues.lock.yml | 2 +-
.github/workflows/blog-auditor.lock.yml | 2 +-
.../workflows/claude-code-user-docs-review.lock.yml | 2 +-
.github/workflows/cli-version-checker.lock.yml | 2 +-
.github/workflows/code-simplifier.lock.yml | 2 +-
.github/workflows/copilot-agent-analysis.lock.yml | 2 +-
.github/workflows/copilot-cli-deep-research.lock.yml | 2 +-
.../workflows/copilot-pr-prompt-analysis.lock.yml | 2 +-
.github/workflows/copilot-session-insights.lock.yml | 2 +-
.../workflows/daily-assign-issue-to-user.lock.yml | 2 +-
.github/workflows/daily-cli-performance.lock.yml | 2 +-
.github/workflows/daily-code-metrics.lock.yml | 2 +-
.github/workflows/daily-compiler-quality.lock.yml | 2 +-
.github/workflows/daily-doc-updater.lock.yml | 2 +-
.github/workflows/daily-firewall-report.lock.yml | 2 +-
.github/workflows/daily-issues-report.lock.yml | 2 +-
.github/workflows/daily-malicious-code-scan.lock.yml | 2 +-
.../daily-multi-device-docs-tester.lock.yml | 2 +-
.../workflows/daily-observability-report.lock.yml | 2 +-
.github/wor
... (truncated)