check_image_update
Check if a container image has a newer version available. Compares your current tag to the latest version and identifies updates as major, minor, or patch.
Instructions
Check if a newer version of a container image is available.
Compares a current tag to the latest available version and tells you if an update is available and what type (major, minor, or patch).
Useful for auditing Dockerfiles or Kubernetes manifests to find outdated images.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | Image reference (e.g., 'nginx', 'ghcr.io/owner/repo') | |
| current_tag | Yes | The current tag being used (e.g., '1.25.0', 'v2.10.0') |