When compiling with release mode and an explicit action tag, generated workflows use remote github/gh-aw/actions/setup@... refs, but .github/workflows/agentics-maintenance.yml still emits uses: ./actions/setup.
Repro
Run:
gh-aw compile --action-mode release --action-tag v0.47.4
Expected
agentics-maintenance.yml should honor --action-tag and use github/gh-aw/actions/setup@v0.47.4 (or SHA-pinned equivalent), consistent with other generated workflows.
Actual
agentics-maintenance.yml uses local path:
uses: ./actions/setup
Notes
This appears to come from maintenance workflow generation not receiving/using the CLI --action-tag override when resolving setup action references.
When compiling with release mode and an explicit action tag, generated workflows use remote
github/gh-aw/actions/setup@...refs, but.github/workflows/agentics-maintenance.ymlstill emitsuses: ./actions/setup.Repro
Run:
gh-aw compile --action-mode release --action-tag v0.47.4Expected
agentics-maintenance.ymlshould honor--action-tagand usegithub/gh-aw/actions/setup@v0.47.4(or SHA-pinned equivalent), consistent with other generated workflows.Actual
agentics-maintenance.ymluses local path:uses: ./actions/setupNotes
This appears to come from maintenance workflow generation not receiving/using the CLI
--action-tagoverride when resolving setup action references.