Skip to content

Commit 2a687a6

Browse files
committed
Update cagent repo URLs
Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
1 parent 32f0b2a commit 2a687a6

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
fi
176176
echo "Using cagent version from CAGENT_VERSION: ${CAGENT_VERSION}"
177177
curl -fL -o cagent \
178-
"https://github.com/docker/cagent/releases/download/${CAGENT_VERSION}/cagent-linux-amd64"
178+
"https://github.com/docker/docker-agent/releases/download/${CAGENT_VERSION}/cagent-linux-amd64"
179179
chmod +x cagent
180180
sudo mv cagent /usr/local/bin/
181181

.github/workflows/update-cagent-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
CURRENT: ${{ steps.check.outputs.current }}
9797
run: |
9898
BRANCH="auto/update-cagent-version"
99-
RELEASE_URL="https://github.com/docker/cagent/releases/tag/$VERSION"
99+
RELEASE_URL="https://github.com/docker/docker-agent/releases/tag/$VERSION"
100100
101101
# Configure git
102102
git config user.name "github-actions[bot]"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cagent GitHub Action
22

3-
A GitHub Action for running [cagent](https://github.com/docker/cagent) AI agents in your workflows. This action simplifies the setup and execution of cagent, handling binary downloads and environment configuration automatically.
3+
A GitHub Action for running [Docker Agent](https://github.com/docker/docker-agent) AI agents in your workflows. This action simplifies the setup and execution of cagent, handling binary downloads and environment configuration automatically.
44

55
## Quick Start
66

@@ -314,5 +314,5 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
314314

315315
## Links
316316

317-
- [cagent Repository](https://github.com/docker/cagent)
317+
- [cagent Repository](https://github.com/docker/docker-agent)
318318
- [MCP Gateway Repository](https://github.com/docker/mcp-gateway)

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ runs:
361361
if [[ "$CAGENT_CACHE_HIT" != "true" ]]; then
362362
echo "Downloading cagent $CAGENT_VERSION for $PLATFORM-$ARCH_NAME..."
363363
retry_download \
364-
"https://github.com/docker/cagent/releases/download/$CAGENT_VERSION/$CAGENT_BINARY" \
364+
"https://github.com/docker/docker-agent/releases/download/$CAGENT_VERSION/$CAGENT_BINARY" \
365365
"$GITHUB_WORKSPACE/cagent"
366366
chmod +x "$GITHUB_WORKSPACE/cagent"
367367
else

review-pr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The workflow automatically handles:
6161

6262
## Running Locally
6363

64-
Requires [cagent](https://github.com/docker/cagent) installed locally. The reviewer agent automatically detects its environment. When running locally, it diffs your current branch against the base branch and outputs findings to the console.
64+
Requires [Docker Agent](https://github.com/docker/docker-agent›) installed locally. The reviewer agent automatically detects its environment. When running locally, it diffs your current branch against the base branch and outputs findings to the console.
6565

6666
```bash
6767
cd ~/code/my-project

security/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ This action includes **built-in security features for all agent executions**:
1313
- Comment-triggered actions are the main abuse vector - this protects against cost/spam attacks
1414

1515
2. **Output Scanning** - All agent responses are scanned for leaked secrets:
16-
1716
- API key patterns: `sk-ant-*`, `sk-*`, `sk-proj-*`
1817
- GitHub tokens: `ghp_*`, `gho_*`, `ghu_*`, `ghs_*`, `github_pat_*`
1918
- Environment variable names in output
@@ -310,4 +309,4 @@ If you discover a security vulnerability, please:
310309

311310
- [OWASP Top 10](https://owasp.org/www-project-top-ten/)
312311
- [GitHub Security Best Practices](https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions)
313-
- [cagent Repository](https://github.com/docker/cagent)
312+
- [Docker Agent Repository](https://github.com/docker/docker-agent)

0 commit comments

Comments
 (0)