Skip to content

Commit c7993e2

Browse files
sjarmakclaude
andcommitted
fix: replace hallucinated commit SHAs with real pinned tags in Dockerfiles
All 4 SHA revisions used in the previous Dockerfiles (client-go, api, loki, express) were hallucinated by the task-generation AI and do not exist in the respective GitHub repos. Replace with real tagged versions: - kubernetes/client-go: 8020fc4... → git clone --depth 1 --branch v0.32.0 - kubernetes/api: fa23dd3... → git clone --depth 1 --branch v0.32.0 - grafana/loki: a3af38d... → git clone --depth 1 --branch v3.3.4 - expressjs/express: 9de5890... → git clone --depth 1 --branch 4.19.2 Also update fixture files (kubernetes-ecosystem.json, grafana-observability.json, nodejs-web-stack.json) with correct tag-based revisions. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3dd7632 commit c7993e2

File tree

17 files changed

+20
-36
lines changed

17 files changed

+20
-36
lines changed

benchmarks/ccb_mcp_crossrepo_tracing/ccx-config-trace-010/environment/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
1717
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
18-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
19-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
18+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2019

2120
# Initialize git identity for agent commits
2221
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_crossrepo_tracing/ccx-config-trace-010/environment/Dockerfile.artifact_only

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ WORKDIR /workspace
2020

2121
# Clone local checkout repos (baseline config: agent has local access to these)
2222
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
23-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
24-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
23+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2524

2625
# Initialize git identity for agent commits
2726
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_crossrepo_tracing/ccx-dep-trace-001/environment/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
1717
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
18-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
19-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
18+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2019

2120
# Initialize git identity for agent commits
2221
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_crossrepo_tracing/ccx-dep-trace-001/environment/Dockerfile.artifact_only

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ WORKDIR /workspace
2020

2121
# Clone local checkout repos (baseline config: agent has local access to these)
2222
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
23-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
24-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
23+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2524

2625
# Initialize git identity for agent commits
2726
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_crossrepo_tracing/ccx-dep-trace-004/environment/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
1717
RUN git clone --depth 1 --branch v11.4.0 https://github.com/grafana/grafana /workspace/grafana
18-
RUN git clone https://github.com/grafana/loki /workspace/loki && \
19-
cd /workspace/loki && git checkout a3af38d4da899032d3ee46a30932d072d37e1b9c
18+
RUN git clone --depth 1 --branch v3.3.4 https://github.com/grafana/loki /workspace/loki
2019

2120
# Initialize git identity for agent commits
2221
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_crossrepo_tracing/ccx-dep-trace-004/environment/Dockerfile.artifact_only

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ WORKDIR /workspace
2020

2121
# Clone local checkout repos (baseline config: agent has local access to these)
2222
RUN git clone --depth 1 --branch v11.4.0 https://github.com/grafana/grafana /workspace/grafana
23-
RUN git clone https://github.com/grafana/loki /workspace/loki && \
24-
cd /workspace/loki && git checkout a3af38d4da899032d3ee46a30932d072d37e1b9c
23+
RUN git clone --depth 1 --branch v3.3.4 https://github.com/grafana/loki /workspace/loki
2524

2625
# Initialize git identity for agent commits
2726
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_onboarding/ccx-onboard-050-ds/environment/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ WORKDIR /workspace
1616
# Clone local checkout repos (baseline config: agent has local access to these)
1717
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
1818
RUN git clone --depth 1 --branch v3.5.17 https://github.com/etcd-io/etcd /workspace/etcd
19-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
20-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
19+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2120

2221
# Initialize git identity for agent commits
2322
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_onboarding/ccx-onboard-050-ds/environment/Dockerfile.artifact_only

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ WORKDIR /workspace
2121
# Clone local checkout repos (baseline config: agent has local access to these)
2222
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
2323
RUN git clone --depth 1 --branch v3.5.17 https://github.com/etcd-io/etcd /workspace/etcd
24-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
25-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
24+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
2625

2726
# Initialize git identity for agent commits
2827
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_platform/ccx-explore-091-ds/environment/Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
1717
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
18-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
19-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
20-
RUN git clone https://github.com/kubernetes/api /workspace/api && \
21-
cd /workspace/api && git checkout fa23dd302759dbb681c1a41f09d24190a38c1d58
18+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
19+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/api /workspace/api
2220

2321
# Initialize git identity for agent commits
2422
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_platform/ccx-explore-091-ds/environment/Dockerfile.artifact_only

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ WORKDIR /workspace
2020

2121
# Clone local checkout repos (baseline config: agent has local access to these)
2222
RUN git clone --depth 1 --branch v1.32.0 https://github.com/kubernetes/kubernetes /workspace/kubernetes
23-
RUN git clone https://github.com/kubernetes/client-go /workspace/client-go && \
24-
cd /workspace/client-go && git checkout 8020fc4fcf89965904a5f43689f169d6e01d1e80
25-
RUN git clone https://github.com/kubernetes/api /workspace/api && \
26-
cd /workspace/api && git checkout fa23dd302759dbb681c1a41f09d24190a38c1d58
23+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/client-go /workspace/client-go
24+
RUN git clone --depth 1 --branch v0.32.0 https://github.com/kubernetes/api /workspace/api
2725

2826
# Initialize git identity for agent commits
2927
RUN git config --global user.email "agent@example.com" && \

0 commit comments

Comments
 (0)