The GitHub docs shows an action being referenced by either specific or major version:
steps:
- uses: actions/checkout@v4
# Reference a specific version
- uses: actions/checkout@v4.2.0
Behind the scenes this is supported by a floating tag, updated as a new version is released.
Is it possible for trivy-action to offer something similar?