Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
as discovered tools in coverage summaries.
- `agentshield ci install` no longer generates a workflow that points to the
nonexistent `limaronaldo/agentshield@v1` action ref.
- The GitHub Action now follows repository redirects when resolving
`version: latest`.
- `agentshield ci install` now generates workflows with the canonical
`aiconnai/agentshield@main` action ref.
- The GitHub Action now resolves release assets from the canonical
`aiconnai/agentshield` repository.

## [0.8.6] - 2026-06-07

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: limaronaldo/agentshield@main
- uses: aiconnai/agentshield@main
with:
path: '.'
fail-on: 'high'
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ runs:
run: |
if [ "${{ inputs.version }}" = "latest" ]; then
VERSION=$(
curl -fsSL https://api.github.com/repos/limaronaldo/agentshield/releases/latest 2>/dev/null \
curl -fsSL https://api.github.com/repos/aiconnai/agentshield/releases/latest 2>/dev/null \
| sed -nE 's/.*"tag_name": *"([^"]+)".*/\1/p' \
| head -n 1 || true
)
Expand Down Expand Up @@ -92,7 +92,7 @@ runs:
run: |
VERSION="${{ steps.version.outputs.version }}"
TARGET="${{ steps.platform.outputs.target }}"
BASE_URL="https://github.com/limaronaldo/agentshield/releases/download/${VERSION}"
BASE_URL="https://github.com/aiconnai/agentshield/releases/download/${VERSION}"

if [[ "$TARGET" == *"windows"* ]]; then
ARCHIVE="agentshield-${VERSION}-${TARGET}.zip"
Expand Down
4 changes: 2 additions & 2 deletions src/ux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: limaronaldo/agentshield@main
- uses: aiconnai/agentshield@main
with:
path: "{scan_path}"
fail-on: "{fail_on}"
Expand Down Expand Up @@ -543,7 +543,7 @@ mod tests {
upload_sarif: true,
});

assert!(workflow.contains("uses: limaronaldo/agentshield@main"));
assert!(workflow.contains("uses: aiconnai/agentshield@main"));
assert!(workflow.contains("fail-on: \"high\""));
assert!(workflow.contains("ignore-tests: true"));
assert!(workflow.contains("upload-sarif: true"));
Expand Down
Loading