From 04b2df22d4cf4d6bd599d0ac2c3dd281e8062c9a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 28 Jul 2025 22:36:23 +0000 Subject: [PATCH 1/3] chore: bump Claude Code version to 1.0.62 --- action.yml | 2 +- base-action/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index cb68d4f..fb0919b 100644 --- a/action.yml +++ b/action.yml @@ -172,7 +172,7 @@ runs: echo "Base-action dependencies installed" cd - # Install Claude Code globally - bun install -g @anthropic-ai/claude-code@1.0.61 + bun install -g @anthropic-ai/claude-code@1.0.62 - name: Setup Network Restrictions if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != '' diff --git a/base-action/action.yml b/base-action/action.yml index 02c9d3b..82e26cb 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -115,7 +115,7 @@ runs: - name: Install Claude Code shell: bash - run: bun install -g @anthropic-ai/claude-code@1.0.61 + run: bun install -g @anthropic-ai/claude-code@1.0.62 - name: Run Claude Code Action shell: bash From 6037d754ac402c2bebd7b593fcccf5a5da157eb8 Mon Sep 17 00:00:00 2001 From: aki77 Date: Tue, 29 Jul 2025 08:20:59 +0900 Subject: [PATCH 2/3] chore: update MCP server image to version 0.9.0 (#344) --- .github/workflows/issue-triage.yml | 2 +- src/mcp/install-mcp-server.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index f664bdd..322b12d 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -32,7 +32,7 @@ jobs: "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", - "ghcr.io/github/github-mcp-server:sha-721fd3e" + "ghcr.io/github/github-mcp-server:sha-efef8ae" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.GITHUB_TOKEN }}" diff --git a/src/mcp/install-mcp-server.ts b/src/mcp/install-mcp-server.ts index 31c57dd..35bb94c 100644 --- a/src/mcp/install-mcp-server.ts +++ b/src/mcp/install-mcp-server.ts @@ -156,7 +156,7 @@ export async function prepareMcpConfig( "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", - "ghcr.io/github/github-mcp-server:sha-721fd3e", // https://github.com/github/github-mcp-server/releases/tag/v0.6.0 + "ghcr.io/github/github-mcp-server:sha-efef8ae", // https://github.com/github/github-mcp-server/releases/tag/v0.9.0 ], env: { GITHUB_PERSONAL_ACCESS_TOKEN: githubToken, From e07ea013bd13b5c183d3314c6070fab61daec759 Mon Sep 17 00:00:00 2001 From: YutaSaito <36355491+uc4w6c@users.noreply.github.com> Date: Tue, 29 Jul 2025 09:39:52 +0900 Subject: [PATCH 3/3] feat: add GITHUB_HOST to github-mcp-server for GitHub Enterprise Server (#343) --- src/mcp/install-mcp-server.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mcp/install-mcp-server.ts b/src/mcp/install-mcp-server.ts index 35bb94c..c8cb125 100644 --- a/src/mcp/install-mcp-server.ts +++ b/src/mcp/install-mcp-server.ts @@ -1,5 +1,5 @@ import * as core from "@actions/core"; -import { GITHUB_API_URL } from "../github/api/config"; +import { GITHUB_API_URL, GITHUB_SERVER_URL } from "../github/api/config"; import type { ParsedGitHubContext } from "../github/context"; import { Octokit } from "@octokit/rest"; @@ -157,9 +157,12 @@ export async function prepareMcpConfig( "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server:sha-efef8ae", // https://github.com/github/github-mcp-server/releases/tag/v0.9.0 + "-e", + "GITHUB_HOST", ], env: { GITHUB_PERSONAL_ACCESS_TOKEN: githubToken, + GITHUB_HOST: GITHUB_SERVER_URL, }, }; }