updated to latest cagent version and added a workflow to create a latest tag on every release of cagent-action #19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Updates the cagent-action to use the latest cagent version (v1.19.4) and adds automated release management with a new workflow that creates and maintains a "latest" tag for easier consumption by users. This eliminates the need for users to track specific version numbers and ensures they always get the most recent stable release.
Changes
Added
.github/workflows/release.yml: New GitHub Actions workflow that automatically creates and updates a "latest" tag whenever a new version is released (triggered onv*.*.*tags)Modified
action.yml: Updated default cagent version fromv1.15.6tov1.19.4README.md: Updated all example usage from@v1.0.4to@latestand updated default cagent version in documentationexamples/code-analysis.yml: Updated action reference to use@latestsecurity/README.md: Updated action reference to use@latesttests/test-job-summary.sh: Updated test expectations to reflect new cagent versionv1.19.4Technical Details
Key changes:
@latestinstead of specific version numbers@latestfor better user experienceThe release workflow includes proper cleanup (deleting existing tags) and uses pinned action versions for security. It runs on Ubuntu latest and requires write permissions to update repository tags.
Testing
@latestresolves correctly after workflow runsBreaking Changes
None - this is a backward-compatible update that improves the user experience.
Migration Guide
For existing users:
@v1.0.4) will continue working@latestfor automatic updates:Related Issues
None explicitly referenced
Checklist