mirror of
https://github.com/daytonaio/daytona.git
synced 2026-04-02 04:48:12 +00:00
Replace all ${{ inputs.* }} and ${{ env.* }} expressions in run: blocks
with shell variable references to prevent potential code injection via
GitHub Actions template expansion.
- Use $VERSION (from workflow-level env) instead of ${{ inputs.version }}
- Move ${{ matrix.platform }}, ${{ matrix.arch }}, ${{ inputs.push_latest }}
to step-level env vars
- Remove redundant inline VERSION=${{ inputs.version }} assignments
- Add version format validation step to all workflow_dispatch workflows
Signed-off-by: Ante Projić <anteprojic@gmail.com>